feat(navBar): refs #7632 isLoading #844
|
@ -29,8 +29,7 @@ const onResponse = (response) => {
|
|||
const config = response.config;
|
||||
stateQuery.remove(config);
|
||||
|
||||
const isSaveRequest = config.method === 'patch';
|
||||
if (isSaveRequest) {
|
||||
if (config.method === 'patch') {
|
||||
alexm marked this conversation as resolved
Outdated
|
||||
notify('globals.dataSaved', 'positive');
|
||||
}
|
||||
|
||||
|
|
|
@ -114,9 +114,6 @@ const pinnedModulesRef = ref();
|
|||
.q-header {
|
||||
background-color: var(--vn-section-color);
|
||||
}
|
||||
.no-visible {
|
||||
visibility: hidden;
|
||||
}
|
||||
</style>
|
||||
alexm marked this conversation as resolved
Outdated
jsegarra
commented
Si solo tiene una propiedad, es lo mismo que hacer style, no? Como gustes Si solo tiene una propiedad, es lo mismo que hacer style, no?
También podemos definir la clase global y usarla.
Como gustes
|
||||
<i18n>
|
||||
en:
|
||||
|
|
|
@ -288,3 +288,7 @@ input::-webkit-inner-spin-button {
|
|||
color: $info;
|
||||
}
|
||||
}
|
||||
|
||||
.no-visible {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
|
|
@ -11,8 +11,6 @@ describe('useStateQueryStore', () => {
|
|||
const stateQueryStore = useStateQueryStore();
|
||||
const { add, isLoading, remove, reset } = useStateQueryStore();
|
||||
const firstQuery = { url: 'myQuery' };
|
||||
alexm marked this conversation as resolved
jsegarra
commented
comentario: definimos baseQuery y luego ....baseQuery en cada variable? comentario: definimos baseQuery y luego ....baseQuery en cada variable?
Esto lo hemos hecho al definir columnas en VnTable, no?
|
||||
const secondQuery = { url: 'myQuery' };
|
||||
const thirdQuery = { url: 'myQuery' };
|
||||
|
||||
function getQueries() {
|
||||
return stateQueryStore.queries;
|
||||
|
@ -43,6 +41,9 @@ describe('useStateQueryStore', () => {
|
|||
});
|
||||
|
||||
it('should add and remove query', async () => {
|
||||
const secondQuery = { ...firstQuery };
|
||||
const thirdQuery = { ...firstQuery };
|
||||
|
||||
add(firstQuery);
|
||||
add(secondQuery);
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Crear la variable y solo usarla en el if es lo mismo que ponerla dentro del if no?
El método post también hace save no?
La variable ya estaba de antes, lo cambio.
No se la logica de pq alguien puso solo patch