Skip to content

Commit 346480e

Browse files
committed
fix: selection tools not being selected issue
1 parent 52cacaa commit 346480e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

client/src/ConfigurationTask/ConfigurationTask.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jest.mock("react-i18next", () => ({
1010
({
1111
"setup.tabs.taskinfo.task_info": "Task Information",
1212
"setup.tabs.taskinfo.task_choice": "Choice of Task",
13-
"setup.tabs.taskinfo.task_choice_object_detection":
13+
"setup.tabs.taskinfo.task_choice_classification":
1414
"Object Detection",
1515
"setup.tabs.taskinfo.task_choice_segmentation": "Image Segmentation",
1616
})[key],

client/src/ConfigurationTask/index.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default ({ config, onChange }) => {
2323
choices: [
2424
{
2525
value: "object_detection",
26-
text: t("setup.tabs.taskinfo.task_choice_object_detection"),
26+
text: t("setup.tabs.taskinfo.task_choice_classification"),
2727
},
2828
{
2929
value: "image_segmentation",

client/src/Localization/translation-de-DE.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const translationDeDE = {
3434
"setup.tabs.images": "Bilder",
3535
"setup.tabs.taskinfo.task_info": "Aufgabeninformation",
3636
"setup.tabs.taskinfo.task_choice": "Aufgabenwahl",
37-
"setup.tabs.taskinfo.task_choice_object_detection": "Bildklassifikation",
37+
"setup.tabs.taskinfo.task_choice_classification": "Bildklassifikation",
3838
"setup.tabs.taskinfo.task_choice_segmentation": "Bildsegmentierung",
3939
"configuration.multiple_regions": "Können mehrere Regionen erstellt werden?",
4040
"configuration.multiple_region_labels": "Mehrere Regionslabels erlaubt?",

client/src/Localization/translation-en-EN.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const translationEnEN = {
3434
"setup.tabs.images": "Images",
3535
"setup.tabs.taskinfo.task_info": "Task Information",
3636
"setup.tabs.taskinfo.task_choice": "Choice of Task",
37-
"setup.tabs.taskinfo.task_choice_object_detection": "Object Detection",
37+
"setup.tabs.taskinfo.task_choice_classification": "Object Detection",
3838
"setup.tabs.taskinfo.task_choice_segmentation": "Image Segmentation",
3939
"configuration.multiple_regions": "Can Multiple Regions Be Created?",
4040
"configuration.multiple_region_labels": "Multiple Region Labels Allowed?",

0 commit comments

Comments
 (0)