sessions: re-formatted code
This commit is contained in:
parent
3bd475f703
commit
be539849d7
1 changed files with 7 additions and 2 deletions
|
@ -1,7 +1,12 @@
|
||||||
import React, { useState } from "react";
|
import React, { useState } from "react";
|
||||||
import { Link } from "react-router-dom";
|
import { Link } from "react-router-dom";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
import { PageSection, Select, SelectOption, SelectVariant } from "@patternfly/react-core";
|
import {
|
||||||
|
PageSection,
|
||||||
|
Select,
|
||||||
|
SelectOption,
|
||||||
|
SelectVariant,
|
||||||
|
} from "@patternfly/react-core";
|
||||||
import moment from "moment";
|
import moment from "moment";
|
||||||
import type UserSessionRepresentation from "keycloak-admin/lib/defs/userSessionRepresentation";
|
import type UserSessionRepresentation from "keycloak-admin/lib/defs/userSessionRepresentation";
|
||||||
|
|
||||||
|
@ -55,7 +60,7 @@ export const SessionsSection = () => {
|
||||||
|
|
||||||
return userSessions;
|
return userSessions;
|
||||||
};
|
};
|
||||||
|
|
||||||
const options = [
|
const options = [
|
||||||
<SelectOption
|
<SelectOption
|
||||||
key={1}
|
key={1}
|
||||||
|
|
Loading…
Reference in a new issue