From 71fc8a100e38478cbc14d78bda2e20e3fd3a2acf Mon Sep 17 00:00:00 2001 From: aleksana Date: Thu, 16 May 2024 11:08:11 +0800 Subject: [PATCH] fix: wording when a package has no platforms list --- frontend/src/Page/Packages.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/Page/Packages.elm b/frontend/src/Page/Packages.elm index 0c7f1a1d..b9512949 100644 --- a/frontend/src/Page/Packages.elm +++ b/frontend/src/Page/Packages.elm @@ -490,7 +490,7 @@ viewResultItem nixosChannels channel showInstallDetails show item = , div [] (List.append [ h4 [] [ text "Platforms" ] ] (if List.isEmpty item.source.platforms then - [ p [] [ text "This package is not available on any platform." ] ] + [ p [] [ text "This package does not list its available platforms." ] ] else [ ul [] (List.map showPlatform (List.sort item.source.platforms)) ]