fix: docker KO, emoji empty and adding some todos in doc
This commit is contained in:
@@ -10,7 +10,7 @@ WORKDIR /app
|
|||||||
# Install dependencies based on the preferred package manager
|
# Install dependencies based on the preferred package manager
|
||||||
COPY package.json package-lock.json* ./
|
COPY package.json package-lock.json* ./
|
||||||
RUN \
|
RUN \
|
||||||
if [ -f package-lock.json ]; then npm install; \
|
if [ -f package-lock.json ]; then npm install --legacy-peer-deps; \
|
||||||
else echo "Lockfile not found." && exit 1; \
|
else echo "Lockfile not found." && exit 1; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
5
TODO.md
5
TODO.md
@@ -1,5 +1,10 @@
|
|||||||
# TowerControl v2.0 - Gestionnaire de tâches moderne
|
# TowerControl v2.0 - Gestionnaire de tâches moderne
|
||||||
|
|
||||||
|
## Fix
|
||||||
|
- [ ] Calendrier n'a plus le bouton calendrier d'ouverture du calendrier visuel dans les inputs datetime
|
||||||
|
- [ ] Un raccourci pour chercher dans la page de Kanban
|
||||||
|
- [ ] Bouton cloner une tache dans la modale d'edition
|
||||||
|
|
||||||
## Idées à developper
|
## Idées à developper
|
||||||
- [ ] Optimisations Perf : requetes DB
|
- [ ] Optimisations Perf : requetes DB
|
||||||
- [ ] PWA et mode offline
|
- [ ] PWA et mode offline
|
||||||
|
|||||||
@@ -246,7 +246,7 @@ export function JiraDashboardPageClient({ initialJiraConfig, initialAnalytics }:
|
|||||||
disabled={isLoading}
|
disabled={isLoading}
|
||||||
variant="secondary"
|
variant="secondary"
|
||||||
>
|
>
|
||||||
{isLoading ? <><Emoji /> Actualisation...</> : <><Emoji emoji="🔄" /> Actualiser</>}
|
{isLoading ? <><Emoji emoji="⏳" /> Actualisation...</> : <><Emoji emoji="🔄" /> Actualiser</>}
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user