[mirotalksfu] - #194 Fix typo

هذا الالتزام موجود في:
Miroslav Pejic
2025-02-15 00:53:30 +01:00
الأصل 530916ab35
التزام 880daa0373

عرض الملف

@@ -1703,7 +1703,7 @@ class RoomClient {
// Create High Blur Image // Create High Blur Image
const highBlurImg = document.createElement('img'); const highBlurImg = document.createElement('img');
highBlurImg.id = 'initHighBlurImg'; highBlurImg.id = 'highBlurImg';
highBlurImg.src = image.blurHigh; highBlurImg.src = image.blurHigh;
highBlurImg.alt = 'High Blur'; highBlurImg.alt = 'High Blur';
highBlurImg.dataset.index = 'high'; highBlurImg.dataset.index = 'high';
@@ -1715,7 +1715,7 @@ class RoomClient {
// Create Low Blur Image // Create Low Blur Image
const lowBlurImg = document.createElement('img'); const lowBlurImg = document.createElement('img');
lowBlurImg.id = 'initLowBlurImg'; lowBlurImg.id = 'lowBlurImg';
lowBlurImg.src = image.blurLow; lowBlurImg.src = image.blurLow;
lowBlurImg.alt = 'Low Blur'; lowBlurImg.alt = 'Low Blur';
lowBlurImg.dataset.index = 'low'; lowBlurImg.dataset.index = 'low';