Skip to content

Commit

Permalink
fix: missing icon imports (follow up of mainsail-crew#646)
Browse files Browse the repository at this point in the history
Signed-off-by: Dominik Willner <[email protected]>
  • Loading branch information
dw-0 committed Mar 3, 2022
1 parent 1a9c208 commit 08cef25
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions src/components/panels/Machine/ConfigFilesPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -405,8 +405,11 @@ import {
mdiFolderPlus,
mdiInformation,
mdiRefresh,
mdiClose,
mdiCog,
mdiFolder,
mdiFolderUpload,
mdiFile,
mdiFileDocumentEditOutline,
mdiCloudDownload,
mdiRenameBox,
Expand Down Expand Up @@ -468,9 +471,12 @@ interface draggingFile {
})
export default class ConfigFilesPanel extends Mixins(BaseMixin) {
mdiInformation = mdiInformation
mdiClose = mdiClose
mdiCog = mdiCog
mdiFolder = mdiFolder
mdiFolderUpload = mdiFolderUpload
mdiFileDocumentEditOutline = mdiFileDocumentEditOutline
mdiFile = mdiFile
mdiCloudDownload = mdiCloudDownload
mdiRenameBox = mdiRenameBox
mdiDelete = mdiDelete
Expand Down
2 changes: 1 addition & 1 deletion src/components/panels/MiscellaneousPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<template>
<panel
v-if="klipperReadyForGui && (miscellaneous.length || filamentSensors.length)"
icon="mdiDipSwitch"
:icon="mdiDipSwitch"
:title="$t('Panels.MiscellaneousPanel.Headline')"
:collapsible="true"
card-class="miscellaneous-panel">
Expand Down
3 changes: 2 additions & 1 deletion src/components/panels/ToolsPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -365,14 +365,15 @@ import { PrinterStateHeater, PrinterStateSensor, PrinterStateTemperatureFan } fr
import { Debounce } from 'vue-debounce-decorator'
import Panel from '@/components/ui/Panel.vue'
import { GuiPresetsStatePreset } from '@/store/gui/presets/types'
import { mdiCog, mdiFan, mdiSnowflake, mdiFire, mdiMenuDown, mdiThermometerLines } from '@mdi/js'
import { mdiCloseThick, mdiCog, mdiFan, mdiSnowflake, mdiFire, mdiMenuDown, mdiThermometerLines } from '@mdi/js'
@Component({
components: { Panel, TempChart, ToolInput },
})
export default class ToolsPanel extends Mixins(BaseMixin) {
mdiFan = mdiFan
mdiSnowflake = mdiSnowflake
mdiCloseThick = mdiCloseThick
mdiCog = mdiCog
mdiFire = mdiFire
mdiMenuDown = mdiMenuDown
Expand Down

0 comments on commit 08cef25

Please sign in to comment.