Skip to content
This repository was archived by the owner on Aug 7, 2024. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: EddieHubCommunity/BioDrop
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: sanketmp/BioDrop
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Oct 2, 2023

  1. fix disable reorder button

    sanketmp committed Oct 2, 2023
    Copy the full SHA
    103d827 View commit details

Commits on Oct 4, 2023

  1. Copy the full SHA
    66a568a View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pages/account/manage/links.js
4 changes: 2 additions & 2 deletions pages/account/manage/links.js
Original file line number Diff line number Diff line change
@@ -111,8 +111,8 @@ export default function ManageLinks({ BASE_URL, username, links }) {
Add Link
</Button>

{linkList.length !== 0 && !reorder && (
<Button onClick={() => setReorder(true)}>
{!reorder && (
<Button onClick={() => setReorder(true)} disable={linkList.length < 2}>
<ArrowPathIcon className="h-5 w-5 mr-2" />
REORDER
</Button>