Skip to content

Commit

Permalink
core: frontend: Extensions: linting cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Williangalvani committed Dec 16, 2022
1 parent 73d4190 commit 533fcad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,8 @@
<script lang="ts">
import Vue, { PropType } from 'vue'
import Notifier from '@/libs/notifier'
import { kraken_service } from '@/types/frontend_services'
import { InstalledExtensionData } from '@/types/kraken'
import { VForm } from '@/types/vuetify'
import back_axios from '@/utils/api'
const notifier = new Notifier(kraken_service)
export default Vue.extend({
name: 'ExtensionCreationDialog',
Expand Down
3 changes: 2 additions & 1 deletion core/frontend/src/views/ExtensionManagerView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ import ExtensionModal from '@/components/kraken/ExtensionModal.vue'
import InstalledExtensionCard from '@/components/kraken/InstalledExtensionCard.vue'
import PullProgress from '@/components/utils/PullProgress.vue'
import Notifier from '@/libs/notifier'
import { Dictionary } from '@/types/common'
import { kraken_service } from '@/types/frontend_services'
import back_axios from '@/utils/api'
import PullTracker from '@/utils/pull_tracker'
Expand Down Expand Up @@ -187,7 +188,7 @@ export default Vue.extend({
status_text: '',
log_output: null as null | string,
show_log: false,
metrics: {} as any,
metrics: {} as Dictionary<{ cpu: number, memory: number}>,
metrics_interval: 0,
edited_extension: null as null | InstalledExtensionData,
}
Expand Down

0 comments on commit 533fcad

Please sign in to comment.