ci: Remove eslint-plugin-prettier again (no-changelog) (#10876)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-09-19 16:29:04 +02:00
committed by GitHub
parent 8fb31e8459
commit fdef6c9f0d
16 changed files with 17 additions and 103 deletions

View File

@@ -124,7 +124,7 @@ function resetNewVariablesList() {
const resourceToEnvironmentVariable = (data: IResource): EnvironmentVariable => ({
id: data.id,
key: data.name,
value: 'value' in data ? data.value ?? '' : '',
value: 'value' in data ? (data.value ?? '') : '',
});
const environmentVariableToResource = (data: EnvironmentVariable): IResource => ({