Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
samiy-xx committed Feb 3, 2016
1 parent 6b96869 commit 0d4dddc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
3 changes: 2 additions & 1 deletion KeySndr.Base/Commands/SaveInputConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System.Linq;
using KeySndr.Base.Providers;
using KeySndr.Common;
using KeySndr.Common.Extensions;

namespace KeySndr.Base.Commands
{
Expand Down Expand Up @@ -68,7 +69,7 @@ private void CreateViewFolderIfNeeded()

private void CreateMediaFolder()
{
storageProvider.CreateMediaFolder(configuration.Name);
storageProvider.CreateMediaFolder(configuration.Name.RemoveWhitespace());
}
}
}
2 changes: 1 addition & 1 deletion KeySndr.Base/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.9.6.*")]
[assembly: AssemblyVersion("0.9.7.*")]
1 change: 0 additions & 1 deletion KeySndr.Base/Providers/FileStorageProvider.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using KeySndr.Base.Domain;
using KeySndr.Common;
using KeySndr.Common.Extensions;
Expand Down
4 changes: 2 additions & 2 deletions Portal/edit-grid.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@
<div ng-include src="'views/partials/success-message-row.html'"></div>
<div ng-include src="'views/partials/error-message-row.html'"></div>


<!-- Modal -->
<!-- Modal for input Configuration-->
<div class="modal fade" id="configSettingsModal" tabindex="-1" role="dialog" aria-labelledby="configSettingsModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
Expand All @@ -47,6 +46,7 @@ <h3>Nothing here yet!</h3>
</div>
</div>
</div>
<!-- Modal for action image Configuration-->
<div class="modal fade" id="imagePickerModal" tabindex="-1" role="dialog" aria-labelledby="imagePickerModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
Expand Down

0 comments on commit 0d4dddc

Please sign in to comment.