Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 243d7da

Browse files
general code refactoring
1 parent c419992 commit 243d7da

File tree

12 files changed

+24
-12
lines changed

12 files changed

+24
-12
lines changed

‎GhostUI/ClientApp/public/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
],
1616
"start_url": ".",
1717
"display": "standalone",
18-
"background_color": "#ffffff",
18+
"background_color": "#fff",
1919
"theme_color": "#209cee"
2020
}

‎GhostUI/ClientApp/src/components/Authenticator.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<template>
2-
<div v-if="isLoading" :class="['fingerprint-spinner', authStatus]">
2+
<div
3+
v-if="isLoading"
4+
:class="['fingerprint-spinner', authStatus]"
5+
>
36
<div />
47
<div />
58
<div />

‎GhostUI/ClientApp/src/components/Navbar.vue

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
<template>
2-
<nav class="navbar" role="navigation" aria-label="main navigation">
2+
<nav
3+
class="navbar"
4+
role="navigation"
5+
aria-label="main navigation"
6+
>
37
<div class="navbar-wrapper">
48
<div class="brand-wrapper">
59
<bulma-logo
@@ -10,7 +14,10 @@
1014
/>
1115
</div>
1216
<div class="navbar-routes">
13-
<div v-if="isAuthenticated" class="navbar-items-group">
17+
<div
18+
v-if="isAuthenticated"
19+
class="navbar-items-group"
20+
>
1421
<router-link
1522
v-for="route in validNavRoutes"
1623
:key="route.path"

‎GhostUI/ClientApp/src/event-bus.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
import Vue from 'vue';
2+
23
export const EventBus = new Vue();
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

‎GhostUI/ClientApp/src/types/index.d.ts

Lines changed: 0 additions & 4 deletions
This file was deleted.

‎GhostUI/ClientApp/src/views/FetchData/FetchData.vue

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,16 @@
1111
<Spinner :isLoading="isLoading" />
1212
<ForecastTable :forecasts="forecasts" />
1313
<p class="buttons is-pagination-group">
14-
<a class="button is-info" @click="paginateForecastData(-5)">
14+
<a
15+
class="button is-info"
16+
@click="paginateForecastData(-5)"
17+
>
1518
<font-awesome-icon icon="angle-double-left" size="2x" />
1619
</a>
17-
<a class="button is-info" @click="paginateForecastData(5)">
20+
<a
21+
class="button is-info"
22+
@click="paginateForecastData(5)"
23+
>
1824
<font-awesome-icon icon="angle-double-right" size="2x" />
1925
</a>
2026
</p>

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /