Skip to content

Commit

Permalink
Merge branch 'main' of github.com:reseau-constellation/igu
Browse files Browse the repository at this point in the history
  • Loading branch information
julienmalard committed Jul 15, 2023
2 parents 8f06b87 + d5f9bd4 commit 778b664
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/renderer/src/components/InitialiserCompte.vue
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
(comptesEnLigne.length
? t('accueil.initialiserCompte.indiceComptePasVu')
: t('accueil.initialiserCompte.indiceRechercheComptes')) +
t('accueil.initialiserCompte.indiceEssaieDeConnecter')
t('accueil.initialiserCompte.indiceEssaieDeConnecter')

Check warning on line 98 in packages/renderer/src/components/InitialiserCompte.vue

View workflow job for this annotation

GitHub Actions / lint / eslint

Expected indentation of 22 spaces but found 20 spaces
}}
</p>
</div>
Expand Down
7 changes: 4 additions & 3 deletions packages/renderer/src/components/compte/ExporterCompte.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ const dialogue = ref(false);
// Contrôles
const exporterCompte = async () => {
await constl?.exporterDispositif({nomFichier: `Mon compte Constellation ${Date.now().toLocaleString()}.zip`});
await constl?.exporterDispositif({
nomFichier: `Mon compte Constellation ${Date.now().toLocaleString()}.zip`,
});
};
</script>
</script>
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
color="primary"
:disabled="
surNavigateur &&
(cheminement === 'exportation' || origineImportation === 'fichier')
(cheminement === 'exportation' || origineImportation === 'fichier')

Check warning on line 51 in packages/renderer/src/components/importerExporter/ImporterOuExporter.vue

View workflow job for this annotation

GitHub Actions / lint / eslint

Expected indentation of 20 spaces but found 18 spaces
"
>
{{ t('communs.importerOuExporter.automatiser') }}
Expand Down
6 changes: 3 additions & 3 deletions packages/renderer/src/components/épingles/ItemFavoris.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ import TexteTronqué from '../communs/TexteTronqué.vue';
import CarteEpingler from './CarteÉpingler.vue';
import {கிளிமூக்கை_உபயோகி} from '/@/plugins/kilimukku/kilimukku-vue';
import CarteEffacer from '../communs/CarteEffacer.vue';
import { computed } from 'vue';
import {computed} from 'vue';
const props = defineProps<{epingle: favorislémentFavorisAvecObjet}>();
Expand All @@ -85,10 +85,10 @@ const typeObjet = ref<'motClef' | 'variable' | 'bd' | 'projet' | 'nuée'>();
enregistrerÉcoute(
constl?.suivreTypeObjet({
idObjet: props.epingle.idObjet,
f: x => typeObjet.value = x,
f: x => (typeObjet.value = x),
}),
);
const icôneTypeItem = computed(()=>{
const icôneTypeItem = computed(() => {
switch (typeObjet.value) {
case 'bd':
return 'mdi-database';
Expand Down

0 comments on commit 778b664

Please sign in to comment.