- default routing to "/app/dashboard"
Some checks failed
CI Pipeline / japa-tests (push) Failing after 53s
Some checks failed
CI Pipeline / japa-tests (push) Failing after 53s
- default route after login "/app/dashboard" in AuthController.ts - npm updates - corrected route in menu.ts - better styling for listing datasets for editor and submitter in Index.vue - personal setting to route "/settings/user"
This commit is contained in:
parent
6fef581dd0
commit
0d51002903
10 changed files with 117 additions and 103 deletions
|
@ -88,7 +88,7 @@ export const MainService = defineStore('main', {
|
|||
fetch(sampleDataKey) {
|
||||
// sampleDataKey= clients or history
|
||||
axios
|
||||
.get(`data-sources/${sampleDataKey}.json`)
|
||||
.get(`/data-sources/${sampleDataKey}.json`)
|
||||
.then((r) => {
|
||||
if (r.data && r.data.data) {
|
||||
this[sampleDataKey] = r.data.data;
|
||||
|
@ -102,7 +102,7 @@ export const MainService = defineStore('main', {
|
|||
fetchApi(sampleDataKey) {
|
||||
// sampleDataKey= authors or datasets
|
||||
axios
|
||||
.get(`api/${sampleDataKey}`)
|
||||
.get(`/api/${sampleDataKey}`)
|
||||
.then((r) => {
|
||||
if (r.data) {
|
||||
this[sampleDataKey] = r.data;
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue