Skip to content

Commit 9743d2a

Browse files
committed
lint: formatting
1 parent 03933c5 commit 9743d2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libs/observable-api/states/array-state.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export class UmbArrayState<T> extends UmbDeepState<T[]> {
3636
sortBy(sortMethod?: (a: T, b: T) => number) {
3737
this.#sortMethod = sortMethod;
3838
const value = this.getValue();
39-
if(value) {
39+
if (value) {
4040
super.setValue([...value].sort(this.#sortMethod));
4141
}
4242
return this;

0 commit comments

Comments
 (0)