Skip to content
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

Blank screen when trying to filter a string field #510

Closed
kuldar opened this issue Aug 25, 2020 · 1 comment
Closed

Blank screen when trying to filter a string field #510

kuldar opened this issue Aug 25, 2020 · 1 comment
Labels
bug/2-confirmed Bug has been reproduced and confirmed. kind/bug A reported bug. topic: qa
Milestone

Comments

@kuldar
Copy link

kuldar commented Aug 25, 2020

filter-string

The error:
Screenshot 2020-08-25 at 15 07 11

Studio version: 0.267.0

Schema:

generator client {
  provider = "prisma-client-js"
}

datasource db {
  provider = "sqlite"
  url      = "file:./dev.db"
}

model User {
  email String  @unique
  id    Int     @default(autoincrement()) @id
  name  String?
  posts Post[]
}

model Post {
  authorId  Int?
  content   String?
  id        Int     @default(autoincrement()) @id
  published Boolean @default(false)
  title     String
  author    User?   @relation(fields: [authorId], references: [id])
}

The project & database is from the Prisma Next.js example project.
https://github.com/prisma/prisma-examples/tree/master/javascript/rest-nextjs

@kuldar kuldar added kind/bug A reported bug. topic: qa labels Aug 25, 2020
@sdnts
Copy link
Contributor

sdnts commented Aug 26, 2020

Fixed now! Will go out with the next dev release!

@sdnts sdnts closed this as completed Aug 26, 2020
@sdnts sdnts added this to the Release 2.6.0 milestone Aug 26, 2020
@sdnts sdnts added the bug/2-confirmed Bug has been reproduced and confirmed. label Aug 26, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug/2-confirmed Bug has been reproduced and confirmed. kind/bug A reported bug. topic: qa
Projects
None yet
Development

No branches or pull requests

2 participants