Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

Commit

Permalink
correct polyfill import
Browse files Browse the repository at this point in the history
  • Loading branch information
ruihe774 committed Dec 9, 2023
1 parent 89cf37a commit 64b6109
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/FeatureSlider.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import { defineComponent } from "vue";
import monitorManager from "../monitor";
import sheet from "../style.module.sass";
import "./polyfill";
const iconMap = {
luminance: "\uE706",
Expand Down
1 change: 0 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { watchThrottled } from "./watchers";
import monitorManager from "./monitor";
import BrightnessPanel from "./components/BrightnessPanel.vue";
import panelState from "./wm";
import "./polyfill";
import "./style";
import "./style.global.sass";

Expand Down
1 change: 1 addition & 0 deletions src/wm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { LogicalPosition, LogicalSize, PhysicalPosition, appWindow } from "@taur
import { reactive, watch, watchEffect, ref, computed } from "vue";
import { watchDelayed, watchThrottled } from "./watchers";
import settings from "./settings";
import "./polyfill";

const panelState = reactive({
width: 350,
Expand Down

0 comments on commit 64b6109

Please sign in to comment.