Replace empty hrefs with a href #

This commit is contained in:
Eike Kettner 2020-12-17 21:15:33 +01:00
parent c9d4e8ec46
commit 69f57d1eb1
18 changed files with 35 additions and 35 deletions

View File

@ -230,7 +230,7 @@ loginInfo model =
, div [ class "divider" ] []
, a
[ class "icon item"
, href ""
, href "#"
, onClick Logout
]
[ i [ class "sign out icon" ] []

View File

@ -135,7 +135,7 @@ view1 settings compact model =
, value model.value
]
[]
, a [ class "ui button", onClick AddContact, href "" ]
, a [ class "ui button", onClick AddContact, href "#" ]
[ text "Add"
]
]

View File

@ -129,7 +129,7 @@ view model =
, ( "disabled", not model.state.active )
]
, onClick PickFiles
, href ""
, href "#"
]
[ i [ class "folder open icon" ] []
, text "Select ..."

View File

@ -268,12 +268,12 @@ viewForm settings model =
, a
[ class "ui secondary button"
, onClick (SetViewMode Table)
, href ""
, href "#"
]
[ text "Cancel"
]
, if model.formModel.settings.name /= "" then
a [ class "ui right floated red button", href "", onClick RequestDelete ]
a [ class "ui right floated red button", href "#", onClick RequestDelete ]
[ text "Delete" ]
else

View File

@ -282,11 +282,11 @@ viewForm model =
, button [ class "ui primary button", type_ "submit" ]
[ text "Submit"
]
, a [ class "ui secondary button", onClick (SetViewMode Table), href "" ]
, a [ class "ui secondary button", onClick (SetViewMode Table), href "#" ]
[ text "Cancel"
]
, if not newEquipment then
a [ class "ui right floated red button", href "", onClick RequestDelete ]
a [ class "ui right floated red button", href "#", onClick RequestDelete ]
[ text "Delete" ]
else

View File

@ -268,12 +268,12 @@ viewForm settings model =
, a
[ class "ui secondary button"
, onClick (SetViewMode Table)
, href ""
, href "#"
]
[ text "Cancel"
]
, if model.formModel.settings.name /= "" then
a [ class "ui right floated red button", href "", onClick RequestDelete ]
a [ class "ui right floated red button", href "#", onClick RequestDelete ]
[ text "Delete" ]
else

View File

@ -772,7 +772,7 @@ item visible. This message will disappear then.
actionInputDatePicker
model.itemDatePicker
)
, a [ class "ui icon button", href "", onClick RemoveDate ]
, a [ class "ui icon button", href "#", onClick RemoveDate ]
[ i [ class "trash alternate outline icon" ] []
]
, Icons.dateIcon ""
@ -791,7 +791,7 @@ item visible. This message will disappear then.
actionInputDatePicker
model.dueDatePicker
)
, a [ class "ui icon button", href "", onClick RemoveDueDate ]
, a [ class "ui icon button", href "#", onClick RemoveDueDate ]
[ i [ class "trash alternate outline icon" ] [] ]
, Icons.dueDateIcon ""
]

View File

@ -155,7 +155,7 @@ renderDetailMenu settings inav model =
]
, title "Edit Metadata"
, onClick ToggleMenu
, href ""
, href "#"
]
[ i [ class "edit icon" ] []
]
@ -835,7 +835,7 @@ item visible. This message will disappear then.
actionInputDatePicker
model.itemDatePicker
)
, a [ class "ui icon button", href "", onClick RemoveDate ]
, a [ class "ui icon button", href "#", onClick RemoveDate ]
[ i [ class "trash alternate outline icon" ] []
]
, Icons.dateIcon ""
@ -855,7 +855,7 @@ item visible. This message will disappear then.
actionInputDatePicker
model.dueDatePicker
)
, a [ class "ui icon button", href "", onClick RemoveDueDate ]
, a [ class "ui icon button", href "#", onClick RemoveDueDate ]
[ i [ class "trash alternate outline icon" ] [] ]
, Icons.dueDateIcon ""
]
@ -957,7 +957,7 @@ renderSuggestions model mkName idnames tagger =
, div [ class "menu" ] <|
(idnames
|> List.take 5
|> List.map (\p -> a [ class "item", href "", onClick (tagger p) ] [ text (mkName p) ])
|> List.map (\p -> a [ class "item", href "#", onClick (tagger p) ] [ text (mkName p) ])
)
]
]

View File

@ -108,7 +108,7 @@ view model =
[ class "item"
, title "Expand all"
, onClick ExpandAll
, href ""
, href "#"
]
[ i [ class "double angle down icon" ] []
]
@ -116,7 +116,7 @@ view model =
[ class "item"
, title "Collapse all"
, onClick CollapseAll
, href ""
, href "#"
]
[ i [ class "double angle up icon" ] []
]
@ -166,7 +166,7 @@ viewGroup model group =
, a
[ class "header"
, onClick (ToggleGroupState group)
, href ""
, href "#"
]
[ text group.name
]

View File

@ -283,11 +283,11 @@ viewForm settings model =
, button [ class "ui primary button", type_ "submit" ]
[ text "Submit"
]
, a [ class "ui secondary button", onClick (SetViewMode Table), href "" ]
, a [ class "ui secondary button", onClick (SetViewMode Table), href "#" ]
[ text "Cancel"
]
, if not newOrg then
a [ class "ui right floated red button", href "", onClick RequestDelete ]
a [ class "ui right floated red button", href "#", onClick RequestDelete ]
[ text "Delete" ]
else

View File

@ -326,14 +326,14 @@ viewForm settings model =
, a
[ class "ui secondary button"
, onClick (SetViewMode Table)
, href ""
, href "#"
]
[ text "Cancel"
]
, if not newPerson then
a
[ class "ui right floated red button"
, href ""
, href "#"
, onClick RequestDelete
]
[ text "Delete" ]

View File

@ -389,11 +389,11 @@ viewForm flags settings model =
, button [ class "ui primary button", type_ "submit" ]
[ text "Submit"
]
, a [ class "ui secondary button", onClick SetTableView, href "" ]
, a [ class "ui secondary button", onClick SetTableView, href "#" ]
[ text "Cancel"
]
, if not newSource then
a [ class "ui right floated red button", href "", onClick RequestDelete ]
a [ class "ui right floated red button", href "#", onClick RequestDelete ]
[ text "Delete" ]
else

View File

@ -291,11 +291,11 @@ viewForm model =
, button [ class "ui primary button", type_ "submit" ]
[ text "Submit"
]
, a [ class "ui secondary button", onClick (SetViewMode Table), href "" ]
, a [ class "ui secondary button", onClick (SetViewMode Table), href "#" ]
[ text "Cancel"
]
, if not newTag then
a [ class "ui right floated red button", href "", onClick RequestDelete ]
a [ class "ui right floated red button", href "#", onClick RequestDelete ]
[ text "Delete" ]
else

View File

@ -253,11 +253,11 @@ viewForm settings model =
, button [ class "ui primary button", type_ "submit" ]
[ text "Submit"
]
, a [ class "ui secondary button", onClick (SetViewMode Table), href "" ]
, a [ class "ui secondary button", onClick (SetViewMode Table), href "#" ]
[ text "Cancel"
]
, if not newUser then
a [ class "ui right floated red button", href "", onClick RequestDelete ]
a [ class "ui right floated red button", href "#", onClick RequestDelete ]
[ text "Delete" ]
else

View File

@ -120,11 +120,11 @@ view2 active settings model =
]
, div [ class "content" ]
[ div [ class "ui buttons" ]
[ a [ class "ui primary button", onClick ConfirmDelete, href "" ]
[ a [ class "ui primary button", onClick ConfirmDelete, href "#" ]
[ text settings.confirmButton
]
, div [ class "or" ] []
, a [ class "ui secondary button", onClick Disable, href "" ]
, a [ class "ui secondary button", onClick Disable, href "#" ]
[ text settings.cancelButton
]
]

View File

@ -87,7 +87,7 @@ view flags settings model =
[ class "borderless item"
, onClick (DoSearch BasicSearch)
, title "Run search query"
, href ""
, href "#"
, disabled model.searchInProgress
]
[ i

View File

@ -51,7 +51,7 @@ view flags model =
]
[ text "Submit"
]
, a [ class "ui right floated button", href "", onClick Reset ]
, a [ class "ui right floated button", href "#", onClick Reset ]
[ text "Reset"
]
, resultMessage model

View File

@ -25,10 +25,10 @@ view mid model =
]
, Html.map DropzoneMsg (Comp.Dropzone.view model.dropzone)
, div [ class "ui bottom attached segment" ]
[ a [ class "ui primary button", href "", onClick SubmitUpload ]
[ a [ class "ui primary button", href "#", onClick SubmitUpload ]
[ text "Submit"
]
, a [ class "ui secondary button", href "", onClick Clear ]
, a [ class "ui secondary button", href "#", onClick Clear ]
[ text "Reset"
]
]
@ -91,7 +91,7 @@ renderSuccessMsg public _ =
]
, p []
[ text "Click "
, a [ class "ui link", href "", onClick Clear ]
, a [ class "ui link", href "#", onClick Clear ]
[ text "Reset"
]
, text " to upload more files."