mirror of
https://github.com/dathere/ckan-devstaller.git
synced 2026-05-20 09:14:14 +00:00
feat: 0.3.3, update CKAN versions
This commit is contained in:
parent
4e6c263198
commit
57dbecc0ac
9 changed files with 24 additions and 17 deletions
|
|
@ -11,26 +11,26 @@ export default function CKANVersionBuilderSection({ config, setConfig }: any) {
|
|||
<Cards>
|
||||
<Card
|
||||
icon={<SailboatIcon />}
|
||||
title="2.11.4"
|
||||
title="2.11.5"
|
||||
className={
|
||||
config.ckanVersion === "2.11.4"
|
||||
config.ckanVersion === "2.11.5"
|
||||
? selectedCardClasses
|
||||
: "cursor-pointer"
|
||||
}
|
||||
onClick={() => {
|
||||
setConfig({ ...config, ckanVersion: "2.11.4" });
|
||||
setConfig({ ...config, ckanVersion: "2.11.5" });
|
||||
}}
|
||||
></Card>
|
||||
<Card
|
||||
icon={<SailboatIcon />}
|
||||
title="2.10.9"
|
||||
title="2.10.10"
|
||||
className={
|
||||
config.ckanVersion === "2.10.9"
|
||||
config.ckanVersion === "2.10.10"
|
||||
? selectedCardClasses
|
||||
: "cursor-pointer"
|
||||
}
|
||||
onClick={() => {
|
||||
setConfig({ ...config, ckanVersion: "2.10.9" });
|
||||
setConfig({ ...config, ckanVersion: "2.10.10" });
|
||||
}}
|
||||
></Card>
|
||||
</Cards>
|
||||
|
|
|
|||
|
|
@ -18,8 +18,8 @@ export default function PresetsBuilderSection({
|
|||
<Card
|
||||
className={
|
||||
config.preset === "ckan-only" &&
|
||||
config.extensions.length === 0 &&
|
||||
config.features.length === 0
|
||||
config.extensions.length === 0 &&
|
||||
config.features.length === 0
|
||||
? selectedCardClasses
|
||||
: "cursor-pointer"
|
||||
}
|
||||
|
|
@ -49,7 +49,7 @@ export default function PresetsBuilderSection({
|
|||
setConfig({
|
||||
...config,
|
||||
preset: "dathere-default",
|
||||
ckanVersion: "2.11.4",
|
||||
ckanVersion: "2.11.5",
|
||||
extensions: ["ckanext-scheming", "DataStore", "DataPusher+"],
|
||||
features: ["enable-ssh"],
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue