Skip to content

Commit

Permalink
fix: way to get signer uuid
Browse files Browse the repository at this point in the history
Signed-off-by: Vitor Mattos <[email protected]>
  • Loading branch information
vitormattos committed Oct 24, 2024
1 parent fba23c5 commit 4a41eda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/FilesList/FileEntry/FileEntryActions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export default {
this.openedMenu = null
this.sidebarStore.hideSidebar()
if (action.id === 'sign') {
const signer = this.source.signers
const sign_uuid = this.source.signers

Check failure on line 150 in src/views/FilesList/FileEntry/FileEntryActions.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Identifier 'sign_uuid' is not in camel case
.reduce((accumulator, signer) => {
if (signer.me) {
return signer.sign_uuid
Expand All @@ -156,7 +156,7 @@ export default {
}, '')
this.signStore.setDocumentToSign(this.source)
this.$router.push({ name: 'SignPDF', params: {

Check failure on line 158 in src/views/FilesList/FileEntry/FileEntryActions.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Expected a line break after this opening brace

Check failure on line 158 in src/views/FilesList/FileEntry/FileEntryActions.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Object properties must go on a new line if they aren't all on the same line
uuid: signer.sign_uui
uuid: sign_uuid

Check failure on line 159 in src/views/FilesList/FileEntry/FileEntryActions.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Identifier 'sign_uuid' is not in camel case

Check warning on line 159 in src/views/FilesList/FileEntry/FileEntryActions.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Missing trailing comma
}})

Check failure on line 160 in src/views/FilesList/FileEntry/FileEntryActions.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Expected a line break before this closing brace

Check failure on line 160 in src/views/FilesList/FileEntry/FileEntryActions.vue

View workflow job for this annotation

GitHub Actions / NPM lint

A space is required before '}'
this.filesStore.selectFile(this.source.nodeId)
} else if (action.id === 'validate') {
Expand Down

0 comments on commit 4a41eda

Please sign in to comment.