Skip to content

Commit

Permalink
fix: clean up ts compile errors (#466)
Browse files Browse the repository at this point in the history
  • Loading branch information
satterly authored Apr 18, 2021
1 parent b96adaf commit 9cbcc43
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
1 change: 1 addition & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -502,6 +502,7 @@
import Banner from '@/components/lib/Banner.vue'
import ProfileMe from '@/components/auth/ProfileMe.vue'
import Snackbar from '@/components/lib/Snackbar.vue'
import i18n from '@/plugins/i18n'
export default {
Expand Down
7 changes: 3 additions & 4 deletions src/views/Alerts.vue
Original file line number Diff line number Diff line change
Expand Up @@ -157,13 +157,12 @@
</template>

<script>
import moment from 'moment'
import { ExportToCsv } from 'export-to-csv'
import AlertList from '@/components/AlertList.vue'
import moment from 'moment'
import { ExportToCsv } from 'export-to-csv'
import utils from '@/common/utils'
import i18n from '../plugins/i18n'
import i18n from '@/plugins/i18n'
export default {
components: {
Expand Down
2 changes: 1 addition & 1 deletion src/views/Reports.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
</div>
</template>

<script lang="ts">
<script>
import TopOffenders from '@/components/reports/TopOffenders.vue'
import TopFlapping from '@/components/reports/TopFlapping.vue'
import TopStanding from '@/components/reports/TopStanding.vue'
Expand Down

0 comments on commit 9cbcc43

Please sign in to comment.