-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Names search case insensitive #824
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All the names have an "Expired" status in the search results page, because the "status" property is not present anymore.
src/components/SearchNamesTable.vue
Outdated
@@ -25,7 +25,7 @@ | |||
{{ name.name }} | |||
</app-link> | |||
</td> | |||
<td>{{ name.status }}</td> | |||
<td>{{ name.status ? 'Active' : 'Expired' }}</td> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Name status is missing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right, fixed.
@@ -96,16 +96,6 @@ export function formatDecodeByteArray(bytesArray) { | |||
return String.fromCharCode(...bytesArray) | |||
} | |||
|
|||
export function formatNameStatus(name) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I removed this logic as there is no way to determine whether the name is in auction or not. It was not even possible before.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Description
resolves #817
Demo
Checklist: