codespell fix
This commit is contained in:
parent
c20f93aebe
commit
6c3cfa9be7
@ -1 +1 @@
|
|||||||
Subproject commit 23538677f6c6be2a62f38dc6137ecdd1c76b7b15
|
Subproject commit 001f5dd081fc8729ff8def90c4a1c3f93eb8689a
|
@ -144,7 +144,7 @@ export interface IndexMeta {
|
|||||||
unique: boolean;
|
unique: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
// FIXME: Instead of refering to an object store by name,
|
// FIXME: Instead of referring to an object store by name,
|
||||||
// maybe refer to it via some internal, numeric ID?
|
// maybe refer to it via some internal, numeric ID?
|
||||||
// This would simplify renaming.
|
// This would simplify renaming.
|
||||||
export interface Backend {
|
export interface Backend {
|
||||||
|
@ -118,7 +118,7 @@ export enum InstancePaths {
|
|||||||
validators_update = "/validators/:vid/update",
|
validators_update = "/validators/:vid/update",
|
||||||
validators_new = "/validators/new",
|
validators_new = "/validators/new",
|
||||||
|
|
||||||
settings = "/inteface",
|
settings = "/interface",
|
||||||
}
|
}
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
||||||
@ -252,7 +252,7 @@ export function InstanceRoutes({
|
|||||||
instance={id}
|
instance={id}
|
||||||
admin={admin}
|
admin={admin}
|
||||||
onShowSettings={() => {
|
onShowSettings={() => {
|
||||||
route("/inteface")
|
route(InstancePaths.settings)
|
||||||
}}
|
}}
|
||||||
path={path}
|
path={path}
|
||||||
onLogout={clearTokenAndGoToRoot}
|
onLogout={clearTokenAndGoToRoot}
|
||||||
|
@ -148,7 +148,7 @@ export function ProductForm({ onSubscribe, initial, alreadyExist }: Props) {
|
|||||||
name="minimum_age"
|
name="minimum_age"
|
||||||
label={i18n.str`Age restricted`}
|
label={i18n.str`Age restricted`}
|
||||||
tooltip={i18n.str`is this product restricted for customer below certain age?`}
|
tooltip={i18n.str`is this product restricted for customer below certain age?`}
|
||||||
help={i18n.str`can be overriden by the order configuration`}
|
help={i18n.str`can be overridden by the order configuration`}
|
||||||
/>
|
/>
|
||||||
<Input<Entity>
|
<Input<Entity>
|
||||||
name="unit"
|
name="unit"
|
||||||
|
@ -83,7 +83,7 @@ export function DetailPage({ instanceId, currentToken: oldToken, onBack, onNewTo
|
|||||||
<div class="level-left">
|
<div class="level-left">
|
||||||
<div class="level-item">
|
<div class="level-item">
|
||||||
<span class="is-size-4">
|
<span class="is-size-4">
|
||||||
Instace id: <b>{instanceId}</b>
|
Instance id: <b>{instanceId}</b>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user