New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Date.fromString failed when tried to convert string that was obtained using toString on Date #810

Closed
Wildsoft opened this Issue Jan 15, 2017 · 2 comments

Comments

Projects
None yet
3 participants
@Wildsoft

Wildsoft commented Jan 15, 2017

The self contained small program that demonstrates the issue is here:

import Html exposing (text)
import Date exposing (..)
import Time exposing (..)

main =
  text (case 
          (
           Date.fromTime 1484459877252 |>
           toString |>
           Date.fromString
          ) of 
  Ok date -> toString date
  Err err -> err)

date_from_string.elm.txt

Issue is only reproducible with IE and FF (I am using Windows 8)

@process-bot

This comment has been minimized.

Show comment
Hide comment
@process-bot

process-bot Jan 15, 2017

Thanks for the issue! Make sure it satisfies this checklist. My human colleagues will appreciate it!

Here is what to expect next, and if anyone wants to comment, keep these things in mind.

process-bot commented Jan 15, 2017

Thanks for the issue! Make sure it satisfies this checklist. My human colleagues will appreciate it!

Here is what to expect next, and if anyone wants to comment, keep these things in mind.

@lukewestby

This comment has been minimized.

Show comment
Hide comment
@lukewestby

lukewestby Jan 20, 2017

Member

Tracking in #816

Member

lukewestby commented Jan 20, 2017

Tracking in #816

@lukewestby lukewestby closed this Jan 20, 2017

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment