Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
RFDarter committed Jul 19, 2024
1 parent 4bf74e3 commit b1a1bc1
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions packages/v3/src/esp-entity-table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,13 @@ export class EntityTable extends LitElement implements RestAction {
return a.entity_category < b.entity_category
? -1
: a.entity_category == b.entity_category
? sortA < sortB
? -1
: 1
? sortA === sortB
? a.name < b.name
? -1
: 1
: sortA < sortB
? -1
: 1
: 1
});
this.requestUpdate();
Expand Down

0 comments on commit b1a1bc1

Please sign in to comment.