Skip to content

Commit

Permalink
Add minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Freymaurer committed Mar 8, 2021
1 parent e44cd6e commit d75743c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/Client/CustomComponents/AutocompleteSearch.fs
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@ let autocompleteTermSearchComponent
Control.div [Control.IsExpanded] [
AdvancedSearch.advancedSearchModal model autocompleteParams.ModalId autocompleteParams.InputId dispatch autocompleteParams.OnAdvancedSearch
Input.input [
Input.Props [Style [BorderColor ExcelColors.Colorfull.gray40]]
Input.Disabled isDisabled
Input.Placeholder inputPlaceholderText
Input.ValueOrDefault autocompleteParams.StateBinding
Expand Down
2 changes: 1 addition & 1 deletion src/Client/OfficeInterop/OfficeInterop.fs
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ let addAnnotationBlocksAsProtocol (buildingBlockInfoList:MinimalBuildingBlock li
currentProtocolGroup.Value.Protocols
|> List.tryFind ( fun existingProtocol ->
if buildingBlockInfoList |> List.exists (fun x -> x.IsAlreadyExisting = true) then
existingProtocol.Id = protocol.Id
existingProtocol.Id = protocol.Id && existingProtocol.ProtocolVersion = protocol.ProtocolVersion
else
false
)
Expand Down

0 comments on commit d75743c

Please sign in to comment.