fix: minor files related fixes (#1016)

This commit is contained in:
Aman Harwara
2022-05-07 17:53:30 +05:30
committed by GitHub
parent cc2b223d0d
commit 8ca9e37ae1
2 changed files with 2 additions and 2 deletions

View File

@@ -101,7 +101,7 @@ export const AttachedFilesPopover: FunctionComponent<Props> = observer(
<div className="relative"> <div className="relative">
<input <input
type="text" type="text"
className="w-full rounded py-1.5 px-3 text-input bg-default border-solid border-1 border-main" className="color-text w-full rounded py-1.5 px-3 text-input bg-default border-solid border-1 border-main"
placeholder="Search files..." placeholder="Search files..."
value={searchQuery} value={searchQuery}
onInput={(e) => { onInput={(e) => {

View File

@@ -76,7 +76,7 @@ export class FeaturesState {
} }
private isEntitledToFilesBeta(): boolean { private isEntitledToFilesBeta(): boolean {
if (window.enabledUnfinishedFeatures) { if (isDev && this.application.hasAccount()) {
return true return true
} }