mirror of
https://github.com/chirpstack/chirpstack.git
synced 2024-12-19 21:27:55 +00:00
ui: Run make format to format ui code.
This commit is contained in:
parent
29b5c3de1c
commit
5418218aa1
@ -87,8 +87,9 @@ function ListDevices(props: IProps) {
|
||||
width: 250,
|
||||
render: (text, record) => (
|
||||
<Link
|
||||
to={`/tenants/${props.application.getTenantId()}/applications/${props.application.getId()}/devices/${record.devEui
|
||||
}`}
|
||||
to={`/tenants/${props.application.getTenantId()}/applications/${props.application.getId()}/devices/${
|
||||
record.devEui
|
||||
}`}
|
||||
>
|
||||
{text}
|
||||
</Link>
|
||||
@ -179,7 +180,7 @@ function ListDevices(props: IProps) {
|
||||
req.setMulticastGroupId(mgSelected);
|
||||
req.setDevEui(devEui);
|
||||
|
||||
MulticastGroupStore.addDevice(req, () => { });
|
||||
MulticastGroupStore.addDevice(req, () => {});
|
||||
}
|
||||
|
||||
setMgModalVisible(false);
|
||||
@ -191,7 +192,7 @@ function ListDevices(props: IProps) {
|
||||
req.setRelayDevEui(relaySelected);
|
||||
req.setDeviceDevEui(devEui);
|
||||
|
||||
RelayStore.addDevice(req, () => { });
|
||||
RelayStore.addDevice(req, () => {});
|
||||
}
|
||||
|
||||
setRelayModalVisible(false);
|
||||
|
@ -179,7 +179,7 @@ function ListGateways(props: IProps) {
|
||||
req.setMulticastGroupId(mgSelected);
|
||||
req.setGatewayId(gatewayId);
|
||||
|
||||
MulticastGroupStore.addGateway(req, () => { });
|
||||
MulticastGroupStore.addGateway(req, () => {});
|
||||
}
|
||||
|
||||
setMgModalVisible(false);
|
||||
|
Loading…
Reference in New Issue
Block a user