Skip to content

Commit 1509026

Browse files
committed
Remove unused imported variables
Signed-off-by: eth2353 <[email protected]>
1 parent ae7559d commit 1509026

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

ui/app/src/Utils/DateTimePicker/Views.elm

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module Utils.DateTimePicker.Views exposing (viewDateTimePicker)
22

3-
import Html exposing (Html, br, button, div, i, input, p, strong, text)
4-
import Html.Attributes as Attr exposing (class, maxlength, type_, value)
3+
import Html exposing (Html, br, button, div, i, input, text)
4+
import Html.Attributes as Attr exposing (class, value)
55
import Html.Events exposing (on, onClick, onMouseOut, onMouseOver)
66
import Iso8601
77
import Json.Decode as Decode

ui/app/src/Views/FilterBar/Views.elm

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module Views.FilterBar.Views exposing (view)
22

3-
import Html exposing (Html, a, button, div, i, input, small, span, text)
3+
import Html exposing (Html, a, button, div, i, input, small, text)
44
import Html.Attributes exposing (class, disabled, href, id, style, value)
55
import Html.Events exposing (onClick, onInput)
66
import Utils.Filter exposing (Matcher, convertFilterMatcher)

ui/app/src/Views/GroupBar/Views.elm

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module Views.GroupBar.Views exposing (view)
22

3-
import Html exposing (Html, a, button, div, input, small, span, text)
3+
import Html exposing (Html, a, button, div, input, small, text)
44
import Html.Attributes exposing (class, disabled, id, style, value)
55
import Html.Events exposing (onBlur, onClick, onFocus, onInput, onMouseEnter, onMouseLeave)
66
import Set

ui/app/src/Views/Status/Views.elm

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import Data.AlertmanagerStatus exposing (AlertmanagerStatus)
44
import Data.ClusterStatus exposing (ClusterStatus, Status(..))
55
import Data.PeerStatus exposing (PeerStatus)
66
import Data.VersionInfo exposing (VersionInfo)
7-
import Html exposing (Html, a, b, code, div, h1, h2, i, li, pre, span, td, text, th, tr, ul)
8-
import Html.Attributes exposing (class, classList, href, id, rel, style, target, type_)
7+
import Html exposing (Html, b, code, div, h1, h2, li, pre, span, text, ul)
8+
import Html.Attributes exposing (class, classList, style)
99
import Status.Api exposing (clusterStatusToString)
1010
import Status.Types exposing (VersionInfo)
1111
import Types

0 commit comments

Comments
 (0)