Skip to content

Commit

Permalink
fix: Fetch ical events of other users calendar. #133
Browse files Browse the repository at this point in the history
  • Loading branch information
naimo84 committed Sep 6, 2022
1 parent eef166c commit e6be93d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/nodes/ical-config.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@
var value = $('#node-config-input-caltype').val();
if (!value || value === 'ical') {
$('#icloud-tip').hide();
$('#node-config-input-includeTodo').parent().show();
$('#node-config-input-username').parent().hide();
$('#node-config-input-password').parent().hide();
$('#node-config-input-includeTodo').parent().show();
$('#node-config-input-username').parent().show();
$('#node-config-input-password').parent().show();
$('#node-config-input-calendar').parent().hide();
return;
} else if (value === 'caldav') {
Expand Down

0 comments on commit e6be93d

Please sign in to comment.