Skip to content

Commit aeb4fac

Browse files
committed
Small fix
1 parent ff2b8e3 commit aeb4fac

File tree

3 files changed

+5
-13
lines changed

3 files changed

+5
-13
lines changed

coreui/src/router/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ function configRoutes () {
269269
children: [
270270
{
271271
path: 'buttons',
272-
name: 'Buttons',
272+
name: 'Standard Buttons',
273273
component: StandardButtons
274274
},
275275
{

coreui/src/views/notes/EditNote.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
label="Status"
3030
/>
3131
<CInput label="Note type" type="text" v-model="note.note_type"/>
32-
<CButton color="primary" @click="update()">Edit</CButton>
32+
<CButton color="primary" @click="update()">Save</CButton>
3333
<CButton color="primary" @click="goBack">Back</CButton>
3434
</CCardBody>
3535
</CCard>

coreui/src/views/users/EditUser.vue

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,10 @@
1414
>
1515
({{dismissCountDown}}) {{ message }}
1616
</CAlert>
17-
<b-form-group>
18-
<label for="name">Name</label>
19-
<CInput type="text" placeholder="Name" v-model="name"></CInput>
20-
</b-form-group>
21-
<b-form-group>
22-
<label for="email">Email</label>
23-
<CInput type="text" placeholder="Email" v-model="email"></CInput>
24-
</b-form-group>
25-
26-
<CButton color="primary" @click="update()">Edit</CButton>
17+
<CInput type="text" label="Name" placeholder="Name" v-model="name"></CInput>
18+
<CInput type="text" label="Email" placeholder="Email" v-model="email"></CInput>
19+
<CButton color="primary" @click="update()">Save</CButton>
2720
<CButton color="primary" @click="goBack">Back</CButton>
28-
2921
</CForm>
3022
</CCardBody>
3123
</CCard>

0 commit comments

Comments
 (0)