sl-ember-components icon indicating copy to clipboard operation
sl-ember-components copied to clipboard

sl-date-range-picker: "startDateValue" cannot be more than "endDateValue"

Open juwara0 opened this issue 9 years ago • 2 comments

Provide a fix for "startDateValue" is more than "endDateValue" and then verify the fix by turning the skipped test below back on.

This test fails: test( '"startDateValue" cannot be more than "endDateValue"', function( assert ) {

this.render( hbs`
    {{sl-date-range-picker
        startDateValue="09/25/2015"
        endDateValue="09/20/2015"
    }}
` );

assert.notEqual(
    this.$( '>:first-child' ).find( '.sl-daterange-start-date' ).find( 'input' ).val(),
    '09/25/2015',
    'The "startDateValue" is not more than the "endDateValue"'
);

});

juwara0 avatar Sep 28 '15 14:09 juwara0

I'm working on this. addressed by #870 (will cause merge conflicts otherwise)

Yogeswar avatar Nov 10 '15 20:11 Yogeswar

Should be resolved by #1458

SpikedKira avatar Feb 05 '16 17:02 SpikedKira