Skip to content

Commit

Permalink
fix detail view
Browse files Browse the repository at this point in the history
  • Loading branch information
noqqe committed Apr 25, 2023
1 parent 96731b8 commit 4bf73c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/serra/card.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ func init() {
cardCmd.Flags().StringVarP(&name, "name", "n", "", "Name of the card (regex compatible)")
cardCmd.Flags().StringVarP(&oracle, "oracle", "o", "", "Contains string in card text")
cardCmd.Flags().StringVarP(&cardType, "type", "t", "", "Contains string in card type line")
cardCmd.Flags().BoolVarP(&detail, "detail", "d", true, "Show details for cards (url)")
cardCmd.Flags().BoolVarP(&detail, "detail", "d", false, "Show details for cards (url)")
rootCmd.AddCommand(cardCmd)
}

Expand Down

0 comments on commit 4bf73c4

Please sign in to comment.