We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f88c58 commit 9529121Copy full SHA for 9529121
src/Shared/Components/Plugin/PluginCard.tsx
@@ -17,7 +17,7 @@ const PluginCard = ({
17
pluginDataStore.pluginVersionStore[latestPluginId]
18
19
const handleSelection = (e: React.MouseEvent | React.KeyboardEvent) => {
20
- if ('key' in e && e.key !== 'Enter') {
+ if ('key' in e && e.key !== 'Enter' && e.key !== ' ') {
21
return
22
}
23
@@ -78,7 +78,7 @@ const PluginCard = ({
78
)}
79
</div>
80
81
- <span className="dc__truncate cn-7 fs-12 fw-4 lh-16">By {updatedBy || 'Devtron'}</span>
+ <span className="dc__truncate cn-7 fs-12 fw-4 lh-16">By {updatedBy}</span>
82
83
84
{/* Plugin description */}
0 commit comments