Skip to content

Commit ed8a0e1

Browse files
committed
console: Fix map panel
1 parent 19b4b63 commit ed8a0e1

File tree

4 files changed

+0
-50
lines changed

4 files changed

+0
-50
lines changed

pkg/webui/console/components/device-map-panel/device-map-panel.styl

-22
This file was deleted.

pkg/webui/console/components/device-map-panel/index.js

-3
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ import { selectSelectedDevice } from '@console/store/selectors/devices'
2626

2727
import MapPanel from '../map-panel'
2828

29-
import style from './device-map-panel.styl'
30-
3129
const DeviceMapPanel = () => {
3230
const device = useSelector(selectSelectedDevice)
3331
const { device_id } = device.ids
@@ -46,7 +44,6 @@ const DeviceMapPanel = () => {
4644
markers={markers}
4745
entity={END_DEVICE}
4846
locationLink={locationLink}
49-
className={style.gatewayMapPanel}
5047
/>
5148
)
5249
}

pkg/webui/console/components/gateway-map-panel/gateway-map-panel.styl

-22
This file was deleted.

pkg/webui/console/components/gateway-map-panel/index.js

-3
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ import locationToMarkers from '@console/lib/location-to-markers'
2323

2424
import MapPanel from '../map-panel'
2525

26-
import style from './gateway-map-panel.styl'
27-
2826
const GatewayMapPanel = ({ gateway }) => {
2927
const { gateway_id } = gateway.ids
3028

@@ -43,7 +41,6 @@ const GatewayMapPanel = ({ gateway }) => {
4341
markers={markers}
4442
entity={GATEWAY}
4543
locationLink={locationLink}
46-
className={style.gatewayMapPanel}
4744
/>
4845
)
4946
}

0 commit comments

Comments
 (0)