prisma / prisma-admin-feedback

Feedback for Prisma Admin (currently in invite-only preview)
6 stars 1 forks source link

Prisma database interface doesn't show 0 Int values #144

Open yassinebridi opened 5 years ago

yassinebridi commented 5 years ago

Describe the bug

The Prisma database interface doesn't show 0 int values as shown in the picture bellow: but when i query from the playground it shows everything as expected: The corresponding schema is as follow:

 type Game {
  id: ID! @id
  teamA: String!
  teamB: String!
  scoreA: Int @default(value: 0)
  scoreB: Int @default(value: 0)
  isLive: Boolean @default(value: true)
}
joshhopkins commented 5 years ago

Just came across this also.