mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
Merge pull request #2060 from makeplane/develop
Promote: Develop to Stage Release
This commit is contained in:
commit
674347c99e
@ -124,7 +124,7 @@ export const SidebarBlockedSelect: React.FC<Props> = ({
|
|||||||
</div>
|
</div>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
className={`bg-custom-background-80 text-xs rounded px-2.5 py-0.5 ${
|
className={`bg-custom-background-80 text-xs text-custom-text-200 rounded px-2.5 py-0.5 ${
|
||||||
disabled ? "cursor-not-allowed" : "cursor-pointer hover:bg-custom-background-80"
|
disabled ? "cursor-not-allowed" : "cursor-pointer hover:bg-custom-background-80"
|
||||||
}`}
|
}`}
|
||||||
onClick={() => setIsBlockedModalOpen(true)}
|
onClick={() => setIsBlockedModalOpen(true)}
|
||||||
|
@ -126,7 +126,7 @@ export const SidebarBlockerSelect: React.FC<Props> = ({
|
|||||||
</div>
|
</div>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
className={`bg-custom-background-80 text-xs rounded px-2.5 py-0.5 ${
|
className={`bg-custom-background-80 text-xs text-custom-text-200 rounded px-2.5 py-0.5 ${
|
||||||
disabled ? "cursor-not-allowed" : "cursor-pointer hover:bg-custom-background-80"
|
disabled ? "cursor-not-allowed" : "cursor-pointer hover:bg-custom-background-80"
|
||||||
}`}
|
}`}
|
||||||
onClick={() => setIsBlockerModalOpen(true)}
|
onClick={() => setIsBlockerModalOpen(true)}
|
||||||
|
@ -62,6 +62,7 @@ export const SidebarCycleSelect: React.FC<Props> = ({
|
|||||||
return (
|
return (
|
||||||
<CustomSelect
|
<CustomSelect
|
||||||
customButton={
|
customButton={
|
||||||
|
<div>
|
||||||
<Tooltip
|
<Tooltip
|
||||||
position="left"
|
position="left"
|
||||||
tooltipContent={`${issueCycle ? issueCycle.cycle_detail.name : "No cycle"}`}
|
tooltipContent={`${issueCycle ? issueCycle.cycle_detail.name : "No cycle"}`}
|
||||||
@ -73,12 +74,15 @@ export const SidebarCycleSelect: React.FC<Props> = ({
|
|||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
className={`truncate ${issueCycle ? "text-custom-text-100" : "text-custom-text-200"}`}
|
className={`truncate ${
|
||||||
|
issueCycle ? "text-custom-text-100" : "text-custom-text-200"
|
||||||
|
}`}
|
||||||
>
|
>
|
||||||
{issueCycle ? issueCycle.cycle_detail.name : "No cycle"}
|
{issueCycle ? issueCycle.cycle_detail.name : "No cycle"}
|
||||||
</span>
|
</span>
|
||||||
</button>
|
</button>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
|
</div>
|
||||||
}
|
}
|
||||||
value={issueCycle ? issueCycle.cycle_detail.id : null}
|
value={issueCycle ? issueCycle.cycle_detail.id : null}
|
||||||
onChange={(value: any) => {
|
onChange={(value: any) => {
|
||||||
|
@ -56,6 +56,7 @@ export const SidebarModuleSelect: React.FC<Props> = ({
|
|||||||
return (
|
return (
|
||||||
<CustomSelect
|
<CustomSelect
|
||||||
customButton={
|
customButton={
|
||||||
|
<div>
|
||||||
<Tooltip
|
<Tooltip
|
||||||
position="left"
|
position="left"
|
||||||
tooltipContent={`${
|
tooltipContent={`${
|
||||||
@ -77,6 +78,7 @@ export const SidebarModuleSelect: React.FC<Props> = ({
|
|||||||
</span>
|
</span>
|
||||||
</button>
|
</button>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
|
</div>
|
||||||
}
|
}
|
||||||
value={issueModule ? issueModule.module_detail?.id : null}
|
value={issueModule ? issueModule.module_detail?.id : null}
|
||||||
onChange={(value: any) => {
|
onChange={(value: any) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user