Skip to content

Commit 9f21d33

Browse files
committed
style: fix js lint problems
Signed-off-by: David Lima <[email protected]>
1 parent 6f87892 commit 9f21d33

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/actions/showStatusInlineAction.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const action = new FileAction({
1515
title: (nodes) => {
1616
const node = nodes[0]
1717

18-
const signedNodeId = node.attributes['signed-node-id'];
18+
const signedNodeId = node.attributes['signed-node-id']
1919

2020
return !signedNodeId || node.fileid === signedNodeId
2121
? fileStatus.find(status => status.id === node.attributes['signature-status']).label
@@ -25,7 +25,7 @@ const action = new FileAction({
2525
iconSvgInline: (nodes) => {
2626
const node = nodes[0]
2727

28-
const signedNodeId = node.attributes['signed-node-id'];
28+
const signedNodeId = node.attributes['signed-node-id']
2929

3030
return !signedNodeId || node.fileid === signedNodeId
3131
? fileStatus.find(status => status.id === node.attributes['signature-status']).icon

src/tab.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Vue.use(PiniaVuePlugin)
2828

2929
const pinia = createPinia()
3030

31-
const isEnabled = function (fileInfo) {
31+
const isEnabled = function(fileInfo) {
3232
if (fileInfo?.isDirectory() || !loadState('libresign', 'certificate_ok')) {
3333
return false
3434
}

0 commit comments

Comments
 (0)