mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 10:59:33 +00:00
Merge pull request #1506 from eikek/remove-delete-btn
Remove delete btn
This commit is contained in:
commit
81711a7546
@ -97,11 +97,11 @@ object RCollective {
|
||||
def getSettings(coll: Ident): ConnectionIO[Option[Settings]] =
|
||||
(for {
|
||||
sett <- OptionT(getRawSettings(coll))
|
||||
prev <- OptionT.fromOption[ConnectionIO](sett.classifier)
|
||||
prev <- OptionT.pure[ConnectionIO](sett.classifier)
|
||||
cats <- OptionT.liftF(RTag.listCategories(coll))
|
||||
next = prev.copy(categories = prev.categories.intersect(cats))
|
||||
next = prev.map(p => p.copy(categories = p.categories.intersect(cats)))
|
||||
pws <- OptionT.liftF(RCollectivePassword.findAll(coll))
|
||||
} yield sett.copy(classifier = Some(next), passwords = pws.map(_.password))).value
|
||||
} yield sett.copy(classifier = next, passwords = pws.map(_.password))).value
|
||||
|
||||
private def getRawSettings(coll: Ident): ConnectionIO[Option[Settings]] = {
|
||||
import RClassifierSetting.stringListMeta
|
||||
|
@ -302,7 +302,7 @@ viewForm texts settings outerModel model =
|
||||
|> Maybe.map .id
|
||||
|
||||
newChannel =
|
||||
channelId |> (==) (Just "")
|
||||
channelId == Just "" || channelId == Nothing
|
||||
|
||||
headline =
|
||||
case Comp.ChannelForm.channelType model of
|
||||
|
Loading…
x
Reference in New Issue
Block a user