Config.xml - <defaultValue> single-select fehlerhaft?

Moin,

habe ein single-select und möchte einen default-Value mitgeben… funktioniert normalerweise auch… nicht aber, wenn die option-id eine Zahl ist.

<input-field type="single-select">
    <name>foobar</name>
    <label>foobar</label>
    <options>
        <option>
            <id>1</id>
            <name>foo</name>
        </option>
        <option>
            <id>2</id>
            <name>bar</name>
        </option>
    </options>
    <defaultValue>2</defaultValue>
</input-field>

Der default-Value führt nicht zu einer Vorauswahl…

Ist das ein Fehler in Shopware oder bei mir?