Skip to content

Commit

Permalink
Removed example saved query from vuex initial state
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiefeiss committed Jul 21, 2022
1 parent 57115ec commit 4b535e0
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions jena-fuseki2/jena-fuseki-ui/src/store/queryLibraryStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,7 @@ const getWithId = (array, id) => {
export const queryLibraryStore = {
namespaced: true,
state: () => ({
savedQueries: [
{
id: '1234',
name: 'xyz',
query: 'SELECT *'
}
]
savedQueries: [] // [{ id: '', name: '', query: ''}, ...]
}),
getters: {
listSavedQueries (state) {
Expand Down

0 comments on commit 4b535e0

Please sign in to comment.