Merge pull request #1506 from eikek/remove-delete-btn

Remove delete btn
This commit is contained in:
mergify[bot] 2022-04-09 18:50:03 +00:00 committed by GitHub
commit 81711a7546
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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