Move fields in drop-down for mobile

This commit is contained in:
leccelecce 2025-04-17 09:10:07 +01:00
parent d98e73bc94
commit c994eb539b

View File

@ -372,7 +372,7 @@ export default function FrigatePlusSettingsView({
{new Date(
model.trainDate,
).toLocaleString()}{" "}
{model.name} ({model.baseModel}) (
(
{model.isBaseModel
? t(
"frigatePlus.modelInfo.plusModelType.baseModel",
@ -382,15 +382,18 @@ export default function FrigatePlusSettingsView({
)}
)
<div>
{t(
"frigatePlus.modelInfo.supportedDetectors",
)}
: {model.supportedDetectors.join(", ")}
{model.name} ({model.baseModel})
</div>
<div>
{t("frigatePlus.modelInfo.dimensions")}:{" "}
{model.width + "x" + model.height}
</div>
<div>
{t(
"frigatePlus.modelInfo.supportedDetectors",
)}
: {model.supportedDetectors.join(", ")}
</div>
<div className="text-xs text-muted-foreground">
{id}
</div>