Skip to content

Commit acae3b3

Browse files
committed
merge adjacent assignment pairs
1 parent f8c4bd0 commit acae3b3

2 files changed

Lines changed: 18331 additions & 18336 deletions

File tree

editor/src/app/components/scm/key-value-editor/key-value-editor.component.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ import { KeyValueEntry } from '../model';
2121
export class KeyValueEditorComponent {
2222
private _entries: KeyValueEntry[] = [];
2323
private _requiredPrefix: string[] = [];
24-
private _inEditMode = false;
2524
filterQuery = '';
2625
filteredEntries: KeyValueEntry[] = [];
2726

@@ -154,10 +153,6 @@ export class KeyValueEditorComponent {
154153
updateFilterQuery(newQuery: string) {
155154
this.filterQuery = newQuery;
156155

157-
if (this._inEditMode) {
158-
return;
159-
}
160-
161156
const query = this.filterQuery.trim().toLowerCase();
162157
if (!query) {
163158
this.filteredEntries = this.entries;

0 commit comments

Comments
 (0)