Bug in TextInputs

FUSE 1.1.1 (13893)

I recreate a bug that I have in my app. When In my app I have two TextInput with the same Observable Value and type fast in any text, the TextInput go crazy…

Here an example:

<App>
    <JavaScript>
    var Observable = require("FuseJS/Observable");

    var TextInputValue = Observable();

    module.exports = {
        TextInputValue: TextInputValue
    };
    </JavaScript>
    <DockPanel>
        <PageControl>
            <Panel>
                <TextInput PlaceholderText="Type something fast!" Height="25" Background="#999" Value="{TextInputValue}" />
            </Panel>
            <Panel>
                <TextInput PlaceholderText="Type something fast!" Height="25" Background="#999" Value="{TextInputValue}" />
            </Panel>
        </PageControl>
    </DockPanel>
</App>