FIX: Make dropdown custom user fields compatible with select-kit 2

This commit is contained in:
Penar Musaraj 2020-02-03 13:19:38 -05:00
parent f83362b05b
commit 6301477b4c
2 changed files with 30 additions and 0 deletions

View File

@ -4,6 +4,8 @@
{{combo-box {{combo-box
id=(concat 'user-' elementId) id=(concat 'user-' elementId)
content=field.options content=field.options
valueProperty=null
nameProperty=null
value=value value=value
none=noneLabel none=noneLabel
onChange=(action (mut value)) onChange=(action (mut value))

View File

@ -414,3 +414,31 @@ QUnit.test("setting featured topic on profile", async assert => {
"clear button is present" "clear button is present"
); );
}); });
acceptance("Custom User Fields", {
loggedIn: true,
site: {
user_fields: [
{
id: 30,
name: "What kind of pet do you have?",
field_type: "dropdown",
options: ["Dog", "Cat", "Hamster"],
required: true
}
]
}
});
QUnit.test("can select an option from a dropdown", async assert => {
await visit("/u/eviltrout/preferences/profile");
assert.ok(exists(".user-field"), "it has at least one user field");
await click(".user-field.dropdown");
const field = selectKit(
".user-field-what-kind-of-pet-do-you-have .combo-box"
);
await field.expand();
await field.selectRowByValue("Cat");
assert.equal(field.header().value(), "Cat", "it sets the value of the field");
});