Skip to content

Commit

Permalink
thinkingreed-inc#1162 共有カレンダーにて、特殊文字が含まれているユーザー名が正しく表示されない不具合の修正
Browse files Browse the repository at this point in the history
  • Loading branch information
K-Haruto committed Jan 3, 2025
1 parent 0d665c6 commit c438e5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion layouts/v7/modules/Calendar/resources/SharedCalendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ Calendar_Calendar_Js('Calendar_SharedCalendar_Js', {
var cashDisabledFeedsStorageKey = thisInstance.getDisabledFeeds();

Object.keys(users).forEach(function (id) {
var user = users[id];
var user = app.getDecodedValue(users[id]);
if(id == myId) {
thisInstance.refreshFeed($(".activitytype-indicator.calendar-feed-indicator.mine").find("input[type='checkbox']"));
return ;//continue
Expand Down

0 comments on commit c438e5f

Please sign in to comment.