diff --git a/web/src/views/CreateDandisetView/CreateDandisetView.vue b/web/src/views/CreateDandisetView/CreateDandisetView.vue
index 9ea27d9f6..211ecda35 100644
--- a/web/src/views/CreateDandisetView/CreateDandisetView.vue
+++ b/web/src/views/CreateDandisetView/CreateDandisetView.vue
@@ -73,49 +73,49 @@
dense
class="my-4"
/>
-
-
- License
-
-
- Select a license under which to share the contents of this Dataset.
- You can learn more about
- licenses for datasets
- .
-
-
-
-
-
- NIH Award Number
-
-
- Provide an NIH award number for this embargoed Dataset. Note: this
- can be changed at any time and additional award numbers can be added
- later.
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
All fields are required
@@ -162,7 +162,7 @@ const store = useDandisetStore();
const name = ref('');
const description = ref('');
-const license = ref();
+const license = ref('spdx:CC0-1.0');
const embargoed = ref(false);
const awardNumber = ref('');
const saveDisabled = computed(
@@ -193,7 +193,7 @@ async function registerDandiset() {
name: name.value,
description: description.value,
};
-
+
if (license.value) {
metadata.license = [license.value];
}