Skip to content

Commit

Permalink
fix: added small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenCoogan committed Dec 30, 2024
1 parent 0301caa commit 54a6a4a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion addon/components/hyper-table/cell-renderers/list.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
class="expandable-list__item fx-row fx-xalign-center fx-gap-px-6"
{{on "click" (action "goToUrl" (concat this.url item.id) bubbles=false)}}
>
{{log @column.key}}
{{item.name}}
{{#if this.locked}}
<OSS::Tag
Expand Down
2 changes: 1 addition & 1 deletion addon/components/hyper-table/cell-renderers/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default Component.extend(CellRendererMixin, {
}),

isEditing: false,
locked: this.column.locked ?? false,
locked: this?.column?.locked ?? false,

formattedList: computed('value', 'value.firstObject.name', function () {
if (this.value.firstObject.name) {
Expand Down

0 comments on commit 54a6a4a

Please sign in to comment.