format code
This commit is contained in:
parent
a5b6b8a617
commit
80d9f7146a
|
@ -1,3 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
npx eslint --cache -c .eslintrc.json "$@" --ext .js,.ts,.tsx
|
|
3
runLinterFormatter.sh
Executable file
3
runLinterFormatter.sh
Executable file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
npx eslint --cache -c .eslintrc.json --ext .js,.ts,.tsx src "$@"
|
|
@ -28,7 +28,12 @@ export function AuthListElement(props: AuthListElementProps): JSX.Element {
|
||||||
<span class="uk-text-muted">{` (${props.method.accessor})`}</span>
|
<span class="uk-text-muted">{` (${props.method.accessor})`}</span>
|
||||||
<div class="uk-margin-top">
|
<div class="uk-margin-top">
|
||||||
{isViewable && (
|
{isViewable && (
|
||||||
<button class="uk-button uk-button-small uk-button-primary" onClick={() => {onViewClick(props)}}>
|
<button
|
||||||
|
class="uk-button uk-button-small uk-button-primary"
|
||||||
|
onClick={() => {
|
||||||
|
onViewClick(props);
|
||||||
|
}}
|
||||||
|
>
|
||||||
{i18next.t("common_view")}
|
{i18next.t("common_view")}
|
||||||
</button>
|
</button>
|
||||||
)}
|
)}
|
||||||
|
|
|
@ -48,7 +48,7 @@ export class UserPassUserView extends Component<DefaultPageProps, { user_data: U
|
||||||
</button>
|
</button>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<br/>
|
<br />
|
||||||
|
|
||||||
<Margin>
|
<Margin>
|
||||||
<h4>{i18next.t("auth_common_token_config")}</h4>
|
<h4>{i18next.t("auth_common_token_config")}</h4>
|
||||||
|
|
Loading…
Reference in a new issue