Skip to content

Commit ee25eef

Browse files
committed
bug fix
1 parent 34fc0a2 commit ee25eef

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

frontend/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8"/>
55
<link href="/favicon.ico" rel="icon">
6-
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
6+
<meta content="width=device-width,initial-scale=1.0,user-scalable=0" name="viewport">
77
<style type="text/css">
88
#app {
99
height: 100%;

frontend/src/layouts/BaseLayout.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ const lang = computed(() => {
4848
v-model:visible="drawer_visible"
4949
placement="left"
5050
@close="drawer_visible=false"
51+
width="256"
5152
>
5253
<side-bar/>
5354
</a-drawer>

frontend/src/views/dashboard/DashBoard.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ function wsOnMessage(m: { data: any }) {
130130

131131
<template>
132132
<div>
133-
<a-row :gutter="[16,16]" class="first-row">
133+
<a-row :gutter="[{xs: 0, sm: 16}, 16]" class="first-row">
134134
<a-col :xl="7" :lg="24" :md="24" :xs="24">
135135
<a-card :title="$gettext('Server Info')" :bordered="false">
136136
<p>
@@ -189,7 +189,7 @@ function wsOnMessage(m: { data: any }) {
189189
</a-card>
190190
</a-col>
191191
</a-row>
192-
<a-row class="row-two" :gutter="[16,32]">
192+
<a-row :gutter="[{xs: 0, sm: 16}, 16]" class="row-two">
193193
<a-col :xl="8" :lg="24" :md="24" :sm="24" :xs="24">
194194
<a-card :title="$gettext('CPU Status')" :bordered="false">
195195
<a-statistic :value="cpu" title="CPU">

frontend/src/views/domain/DomainList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ function destroy(site_name: any) {
8888
:disable_search="true"
8989
row-key="name"
9090
ref="table"
91-
@clickEdit="r => this.$router.push({
91+
@clickEdit="r => $router.push({
9292
path: '/domain/' + r
9393
})"
9494
:deletable="false"

frontend/version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version":"1.5.0","build_id":15,"total_build":85}
1+
{"version":"1.5.0","build_id":17,"total_build":87}

0 commit comments

Comments
 (0)