-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Renaming doesn't remove underscore #161
Comments
I think you meant:
I was a bit confused, but the "_" got removed from your message :-). |
Seems right important thing is to remove the underscore when renaming
man. 27. apr. 2020 15.55 skrev waldo <[email protected]>:
… I think you meant:
this.objectName = this.objectName.trim().toString().replace(/["_]/g, '');
this.extendedObjectName = this.extendedObjectName.trim().toString().replace(/["_]/g, '');
I was a bit confused, but the "_" got removed from your message :-).
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#161 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AKA3V7WBSMHFH7NA5QMC563ROWFEPANCNFSM4MDD4RNA>
.
|
I am unable to find documentation that outlines underscore as a forbidden character in AL file names. I have extensions: Settings: Original file name: New file name upon saving: Object header: So my two questions are:
|
I appreciate the speedy response. I also wanted to note that after I posted my comment I found Issue #169 and wanted to put that here! You're the best! |
With AL 5 underscore in filenames are no longer allowed
Can you modify navobject.ts line 264+265 to
this.objectName = this.objectName.trim().toString().replace(/["]/g, '');
this.extendedObjectName = this.extendedObjectName.trim().toString().replace(/["]/g, '');
Regards
Christoffer
The text was updated successfully, but these errors were encountered: