Skip to content

Commit

Permalink
Code smells resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
Lakeyzer committed Nov 3, 2023
1 parent 143d52b commit 6f2eab6
Show file tree
Hide file tree
Showing 8 changed files with 1 addition and 15 deletions.
1 change: 0 additions & 1 deletion src/boot/plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import "animate.css";
import Croppa from "vue-croppa";
import { Cookies } from "quasar";
import { Splitpanes, Pane } from "splitpanes";
// import "splitpanes/dist/splitpanes.css";

export default async ({ router, Vue }) => {
Vue.config.productionTip = false;
Expand Down
2 changes: 0 additions & 2 deletions src/components/MusicPlayer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
:src="`${music_url}?autoplay=1&mute=0&playsinline=1&controls=0`"
title="Music player"
class="music-player"
frameborder="0"
allow="autoplay"
/>
<iframe
Expand All @@ -15,7 +14,6 @@
:src="`${ambience_url(sound.url)}?autoplay=1&mute=0&playsinline=1&controls=0`"
title="Music player"
class="music-player"
frameborder="0"
allow="autoplay"
/>
</div>
Expand Down
1 change: 0 additions & 1 deletion src/components/campaign/resources/Notes.vue
Original file line number Diff line number Diff line change
Expand Up @@ -129,4 +129,3 @@ export default {
};
</script>

<style lang="scss" scoped></style>
4 changes: 0 additions & 4 deletions src/components/drawers/encounter/TargetingInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,3 @@
props: ['type', 'data']
};
</script>

<style lang="scss" scoped>
</style>
3 changes: 0 additions & 3 deletions src/components/encounters/Entities.vue
Original file line number Diff line number Diff line change
Expand Up @@ -805,9 +805,6 @@ input[type="number"]::-webkit-inner-spin-button {
}
}
}
// .multi_nr::v-deep .q-field__inner {
// display: none;
// }
.players {
display: flex;
Expand Down
3 changes: 1 addition & 2 deletions src/components/settings/General.vue
Original file line number Diff line number Diff line change
Expand Up @@ -257,10 +257,9 @@ export default {
let options = this.types[type].type_settings.filter((item) => {
return item.key === key;
})[0].options;
const selected = options.filter((item) => {
return options.filter((item) => {
return item.value === value;
})[0];
return selected;
},
},
};
Expand Down
1 change: 0 additions & 1 deletion src/components/trackCampaign/Sharing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
:src="`${sharing.youtube}?autoplay=1&mute=0&playsinline=1`"
title="YouTube video player"
class="youtube-player"
frameborder="0"
allow="autoplay"
/>
<div v-if="sharing.message" class="message">{{ sharing.message.trim() }}</div>
Expand Down
1 change: 0 additions & 1 deletion src/components/weather/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
:src="`${backgroundYoutube}?autoplay=1&mute=${mute_youtube}&playsinline=1&controls=0`"
title="YouTube video player"
class="youtube-player"
frameborder="0"
allow="autoplay"
/>
<q-resize-observer v-if="backgroundYoutube" @resize="setSize" />
Expand Down

0 comments on commit 6f2eab6

Please sign in to comment.