Skip to content

Commit

Permalink
feat(ui-tasks): remove some notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
skamril committed Oct 29, 2024
1 parent dc05f6a commit bbd1cd9
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
2 changes: 0 additions & 2 deletions webapp/public/locales/en/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -578,9 +578,7 @@
"study.success.deleteConstraint": "Binding constraint deleted successfully",
"study.success.addCluster": "Cluster added successfully",
"study.success.deleteCluster": "Cluster deleted successfully",
"study.message.upgradeInProgress": "Running study upgrade",
"study.message.outputExportInProgress": "Downloading study outputs...",
"study.message.tsGenerationInProgress": "TS Generation...",
"study.question.deleteLink": "Are you sure you want to delete this link?",
"study.question.deleteArea": "Are you sure you want to delete this area?",
"study.question.upgrade": "Are you sure you want to upgrade this study?",
Expand Down
2 changes: 0 additions & 2 deletions webapp/public/locales/fr/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -578,9 +578,7 @@
"study.success.deleteConstraint": "Contrainte couplante supprimée avec succès",
"study.success.addCluster": "Cluster créé avec succès",
"study.success.deleteCluster": "Cluster supprimé avec succès",
"study.message.upgradeInProgress": "Mise à jour de l'étude en cours",
"study.message.outputExportInProgress": "Téléchargement des sorties en cours...",
"study.message.tsGenerationInProgress": "Génération des TS en cours...",
"study.question.deleteLink": "Êtes-vous sûr de vouloir supprimer ce lien ?",
"study.question.deleteArea": "Êtes-vous sûr de vouloir supprimer cette zone ?",
"study.question.upgrade": "Êtes-vous sûr de vouloir mettre à jour cette étude ?",
Expand Down
4 changes: 0 additions & 4 deletions webapp/src/components/App/Tasks/NotificationBadge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,6 @@ function NotificationBadge(props: Props) {
newNotification("studies.studyunarchiving");
} else if (task.type === TaskType.Scan) {
newNotification("studies.success.scanFolder");
} else if (task.type === TaskType.UpgradeStudy) {
newNotification("study.message.upgradeInProgress");
} else if (task.type === TaskType.ThermalClusterSeriesGeneration) {
newNotification("study.message.tsGenerationInProgress");
}
} catch (error) {
logError(error);
Expand Down

0 comments on commit bbd1cd9

Please sign in to comment.