Skip to content

Commit

Permalink
fix: add that ONE "
Browse files Browse the repository at this point in the history
  • Loading branch information
reisxd committed Apr 15, 2024
1 parent c0d095b commit 83b63c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tizenbrew-app/TizenBrew/js/wsClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function onMessage(msg) {
document.getElementById('appList').innerHTML = '';
for (const module of message.modules) {
document.getElementById('appList').innerHTML += `
<div data-packagename="${module.name}" data-appPath="${module.appPath}" class="card ${firstOne ? 'selected' : ''}" tabindex="0" data-keys="${module.keys.join(',')}>
<div data-packagename="${module.name}" data-appPath="${module.appPath}" class="card ${firstOne ? 'selected' : ''}" tabindex="0" data-keys="${module.keys.join(',')}">
<div>
<h1>${module.appName}</h1>
<h3>
Expand Down

0 comments on commit 83b63c3

Please sign in to comment.