clawmoney 0.17.15 → 0.17.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -173,7 +173,11 @@ export async function marketSetupCommand(opts = {}) {
|
|
|
173
173
|
}
|
|
174
174
|
const description = await text({
|
|
175
175
|
message: " Description:",
|
|
176
|
-
placeholder
|
|
176
|
+
// initialValue (not placeholder) so the user can just hit ENTER
|
|
177
|
+
// to accept the default copy. They can still edit before pressing
|
|
178
|
+
// enter — backspace clears the prefilled text if they want to
|
|
179
|
+
// write their own.
|
|
180
|
+
initialValue: row.placeholderDesc,
|
|
177
181
|
validate: validateDescription,
|
|
178
182
|
});
|
|
179
183
|
if (isCancel(description)) {
|