Minor UI issue with `init` flow
See original GitHub issueAfter running through the following init
flow:
- Starter kit
- TS
- Script
- SQLite
I get the following output:
In the sentence:
Start Prisma's development mode to enable access to Prisma Studio and watch schema.prisma for changes:
the for changes
should be printed in gray instead of white.
Issue Analytics
- State:
- Created 4 years ago
- Comments:9 (9 by maintainers)
Top Results From Across the Web
Fixing common UI problems through testing | by Dillion Megida
Here are some UI problems you may find when you visit untested web applications. 1. Inaccessible links and buttons. Inaccessible here means difficult...
Read more >Solving Transient Models That Have Inconsistent Initial Values
Read this article to learn different approaches for solving transient model equations in {:comsolmph} when you have inconsistent initial values.
Read more >Cosmetic and the Functional Bugs - What has to be Treated ...
This article helps in understanding the importance of the functional and the cosmetic bugs and explains how the cosmetic bugs can be ...
Read more >10 Examples Of Bad UI Design And How To Fix Them
If you're designing an app or a website, make sure you're aware of these common UI design mistakes. Read more here.
Read more >UI layer - Android Developers
Unidirectional data flow (UDF) as a means of producing and managing the UI state. ... leading to data inconsistencies and subtle bugs.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Made a quick PR for this: https://github.com/prisma/prisma2/pull/481
This was caused by the extra reset prop which resets the applied dim prop in chalk(ink just wraps that API)
I changed my theme and set this up locally for testing. The main culprit was prop order rather than
reset
prop.With
<Color reset dim>
:With
<Color dim reset>
:Maybe a thing for @timsuchanek to note.
Made a new PR fixing this: https://github.com/prisma/prisma2/pull/543