Skip to content

Commit

Permalink
luci-app-package-manager: Swap ternary outputs
Browse files Browse the repository at this point in the history
follow-up for 9a5a5ec

Signed-off-by: Paul Donald <[email protected]>
  • Loading branch information
systemcrash committed Dec 6, 2024
1 parent df3a77e commit 276fef8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1260,7 +1260,7 @@ return view.extend({
E('tr', { 'class': 'tr cbi-section-table-titles' }, [
E('th', { 'class': 'th col-2 left' }, [ _('Package name') ]),
E('th', { 'class': 'th col-2 left version' }, [ _('Version') ]),
E('th', { 'class': 'th col-1 center size'}, [ _('Size (%s)').format(L.hasSystemFeature('apk') ? '.ipk' : '.apk') ]),
E('th', { 'class': 'th col-1 center size'}, [ _('Size (%s)').format(L.hasSystemFeature('apk') ? '.apk' : '.ipk') ]),
E('th', { 'class': 'th col-10 left' }, [ _('Description') ]),
E('th', { 'class': 'th right cbi-section-actions' }, [ '\u00a0' ])
])
Expand Down

0 comments on commit 276fef8

Please sign in to comment.