mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-09 01:26:24 +01:00
data-id was meant for debugging, removing it
This commit is contained in:
parent
0bf5ef52ac
commit
4e67edac5e
1 changed files with 0 additions and 2 deletions
|
@ -499,7 +499,6 @@ function Catchup() {
|
||||||
const isFiltered = filteredPostsMap[post.id];
|
const isFiltered = filteredPostsMap[post.id];
|
||||||
return (
|
return (
|
||||||
<span
|
<span
|
||||||
data-id={post.id}
|
|
||||||
key={post.id}
|
key={post.id}
|
||||||
class={`post-dot ${isFiltered ? 'post-dot-highlight' : ''}`}
|
class={`post-dot ${isFiltered ? 'post-dot-highlight' : ''}`}
|
||||||
/>
|
/>
|
||||||
|
@ -518,7 +517,6 @@ function Catchup() {
|
||||||
const isFiltered = filteredPostsMap[post.id];
|
const isFiltered = filteredPostsMap[post.id];
|
||||||
return (
|
return (
|
||||||
<span
|
<span
|
||||||
data-id={post.id}
|
|
||||||
key={post.id}
|
key={post.id}
|
||||||
class={`post-dot ${isFiltered ? 'post-dot-highlight' : ''}`}
|
class={`post-dot ${isFiltered ? 'post-dot-highlight' : ''}`}
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in a new issue