Browse Source

Fix typo

master
Radu Liviu Carjan 3 years ago
parent
commit
baeeb3023c
  1. 91
      public/js/app.js
  2. 4
      resources/js/components/layout/Header.vue

91
public/js/app.js

@ -30568,58 +30568,51 @@ var render = function() {
var _vm = this
var _h = _vm.$createElement
var _c = _vm._self._c || _h
return _c(
"div",
{ staticClass: "header" },
[
_c(
"div",
{ staticClass: "left" },
[
_c("Button", {
staticClass: "p-button-primary",
attrs: { label: "Search and Displace" },
on: {
click: function($event) {
return _vm.onRouteChange("/")
}
return _c("div", { staticClass: "header" }, [
_c(
"div",
{ staticClass: "left" },
[
_c("Button", {
staticClass: "p-button-primary",
attrs: { label: "Search and Displace" },
on: {
click: function($event) {
return _vm.onRouteChange("/")
}
})
],
1
),
_vm._v(" "),
_c(
"div",
{ staticClass: "right" },
[
_c("Button", {
staticClass: "p-button-primary fc-button",
attrs: { label: "Add regex" },
on: {
click: function($event) {
return _vm.onRouteChange("/regex/create")
}
}
})
],
1
),
_vm._v(" "),
_c(
"div",
{ staticClass: "right" },
[
_c("Button", {
staticClass: "p-button-primary fc-button",
attrs: { label: "Add regex" },
on: {
click: function($event) {
return _vm.onRouteChange("/regex/create")
}
}),
_vm._v(" "),
_c("Button", {
staticClass: "p-button-primary fc-button",
attrs: { label: "Add regex" },
on: {
click: function($event) {
return _vm.onRouteChange("/searchers")
}
}
}),
_vm._v(" "),
_c("Button", {
staticClass: "p-button-primary fc-button",
attrs: { label: "Searchers" },
on: {
click: function($event) {
return _vm.onRouteChange("/searchers")
}
})
],
1
),
_vm._v(" "),
_c("ConfirmDialog")
],
1
)
}
})
],
1
)
])
}
var staticRenderFns = []
render._withStripped = true

4
resources/js/components/layout/Header.vue

@ -17,10 +17,8 @@
<Button
@click="onRouteChange('/searchers')"
class="p-button-primary fc-button"
label="Add regex" />
label="Searchers" />
</div>
<ConfirmDialog></ConfirmDialog>
</div>
</template>

Loading…
Cancel
Save