fix(client): Fix icon
This commit is contained in:
parent
3c66990263
commit
320352bf4b
|
@ -29,7 +29,7 @@
|
||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
import * as XDraggable from 'vuedraggable';
|
import * as XDraggable from 'vuedraggable';
|
||||||
import { v4 as uuid } from 'uuid';
|
import { v4 as uuid } from 'uuid';
|
||||||
import { faWindowMaximize, faTimes } from '@fortawesome/free-solid-svg-icons';
|
import { faWindowMaximize, faTimes, faCog } from '@fortawesome/free-solid-svg-icons';
|
||||||
import XColumn from './column.vue';
|
import XColumn from './column.vue';
|
||||||
import { widgets } from '../../widgets';
|
import { widgets } from '../../widgets';
|
||||||
|
|
||||||
|
@ -62,7 +62,7 @@ export default Vue.extend({
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
this.menu = [{
|
this.menu = [{
|
||||||
icon: 'cog',
|
icon: faCog,
|
||||||
text: this.$t('edit'),
|
text: this.$t('edit'),
|
||||||
action: () => {
|
action: () => {
|
||||||
this.edit = !this.edit;
|
this.edit = !this.edit;
|
||||||
|
|
Loading…
Reference in New Issue