* ckpt

* ternary condition fix

* auto lint fixes
This commit is contained in:
Advitya Gemawat 2023-10-26 11:23:01 -04:00 коммит произвёл GitHub
Родитель 3a5541d83c
Коммит e4487bf9e6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 14 добавлений и 8 удалений

Просмотреть файл

@ -198,7 +198,7 @@ export class FlyoutObjectDetection extends React.Component<
+this.state.odSelectedKey.slice(
FlyoutODUtils.ExcessLabelLen
)
] ? (
] && (
<FluentUI.Stack.Item className={classNames.imageContainer}>
<FluentUI.Image
src={`data:image/jpg;base64,${this.props.explanations
@ -212,13 +212,19 @@ export class FlyoutObjectDetection extends React.Component<
style={explanationImage}
/>
</FluentUI.Stack.Item>
) : (
<FluentUI.Stack.Item>
<FluentUI.Spinner
label={`${localization.InterpretVision.Dashboard.loading} ${item?.index}`}
/>
</FluentUI.Stack.Item>
)}
{this.state.odSelectedKey !== "" &&
this.props.loadingExplanation[item.index][
+this.state.odSelectedKey.slice(
FlyoutODUtils.ExcessLabelLen
)
] && (
<FluentUI.Stack.Item>
<FluentUI.Spinner
label={`${localization.InterpretVision.Dashboard.loading} ${item?.index}`}
/>
</FluentUI.Stack.Item>
)}
</FluentUI.Stack>
</FluentUI.Stack>
</FluentUI.Stack>

Просмотреть файл

@ -1449,7 +1449,7 @@
"labelVisibilityDropdown": "Select labels to display",
"legendFailure": "failure",
"legendSuccess": "success",
"loading": "Computing explanation for index",
"loading": "Computing explanation for image of index",
"multiselect": "Multiselect",
"notdefined": "object scenario not defined",
"objectSelect": "Object Selection",