fix: bug fixes (#2581)

* fix: module sidebar fix for kanban layout

* chore: cycle & module sidebar improvement

* chore: join project content updated

* chore: project empty state header fix

* chore: create project modal dropdown consistency

* chore: list view group header overlapping issue fix

* chore: popover code refactor

* chore: module sidebar fix for cycle kanban view

* chore: add existing issue option added in module empty state

* chore: add existing issue option added in cycle empty state
This commit is contained in:
Anmol Singh Bhatia 2023-11-01 17:11:07 +05:30 committed by GitHub
parent 13ead7c314
commit 548e95c7e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 229 additions and 157 deletions

View file

@ -330,9 +330,9 @@ export const CreateProjectModal: FC<Props> = observer((props) => {
<CustomSelect
value={value}
onChange={onChange}
buttonClassName="border-[0.5px] shadow-md !py-1.5"
buttonClassName="border-[0.5px] shadow-md !py-1.5 shadow-none"
label={
<div className="flex items-center gap-2">
<div className="flex items-center gap-2 text-custom-text-300">
{currentNetwork ? (
<>
<currentNetwork.icon className="h-[18px] w-[18px]" />

View file

@ -68,7 +68,8 @@ export const JoinProjectModal: React.FC<TJoinProjectModalProps> = (props) => {
Join Project?
</Dialog.Title>
<p>
Are you sure you want to join <span className="font-semibold">{project?.name}</span>?
Are you sure you want to join the project <span className="font-semibold">{project?.name}</span>?
Please click the &apos;Join Project&apos; button below to continue.
</p>
<div className="space-y-3" />
</div>