code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/metaversefile-api.js b/metaversefile-api.js @@ -794,7 +794,7 @@ metaversefile.setApi({
if (parent) {
parent.add(app);
}
- if (position || quaternion || scale || in_front) {
+ if (position || quaternion || scale || in_front || parent) {
app.updateMatrixWorld();
app.lastMatrix.copy(app.matrixWorld);
}
| 0 |
diff --git a/src/PanelTraits/Read.php b/src/PanelTraits/Read.php @@ -173,7 +173,7 @@ trait Read
$this->page_length_menu = [[10, 25, 50, 100, -1], [10, 25, 50, 100, 'backpack::crud.all']];
}
// if we have a 2D array, update all the values in the right hand array to their translated values
- if (count($this->page_length_... | 14 |
diff --git a/spec/requests/carto/api/public/data_observatory_controller_spec.rb b/spec/requests/carto/api/public/data_observatory_controller_spec.rb @@ -327,8 +327,6 @@ describe Carto::Api::Public::DataObservatoryController do
}
end
- it_behaves_like 'an endpoint validating a DO API key'
-
it 'checks if DO is enabled' ... | 2 |
diff --git a/lib/unpoly/rails/version.rb b/lib/unpoly/rails/version.rb @@ -4,6 +4,6 @@ module Unpoly
# The current version of the unpoly-rails gem.
# This version number is also used for releases of the Unpoly
# frontend code.
- VERSION = '1.0.0'
+ VERSION = '2.0.0'
end
end
| 12 |
diff --git a/backend/registration_api/pkg/handler.go b/backend/registration_api/pkg/handler.go @@ -375,6 +375,12 @@ func deleteAppointmentInEnrollment(enrollmentCode string, phone string) error {
func deleteRecipient(params operations.DeleteRecipientParams, principal *models3.JWTClaimBody) middleware.Responder {
code :... | 9 |
diff --git a/src/android/java/io/jxcore/node/ConnectionModel.java b/src/android/java/io/jxcore/node/ConnectionModel.java @@ -146,7 +146,7 @@ public class ConnectionModel {
* @param incomingSocketThread An incoming (connection) socket thread instance to add.
* @return True, if the thread was successfully added to the co... | 2 |
diff --git a/iris/mutations/communityMember/addCommunityModerator.js b/iris/mutations/communityMember/addCommunityModerator.js @@ -79,12 +79,14 @@ export default async (_: any, { input }: Input, { user }: GraphQLContext) => {
);
}
- if (!currentUserPermission.isOwner) {
- return new UserError('You must own this communi... | 11 |
diff --git a/src/index.js b/src/index.js @@ -10,6 +10,7 @@ const Hapi = require('hapi');
const corsHeaders = require('hapi-cors-headers');
const _ = require('lodash');
const crypto = require('crypto');
+
// Internal lib
require('./javaHelper');
const debugLog = require('./debugLog');
@@ -45,6 +46,7 @@ class Offline {
u... | 0 |
diff --git a/js/tests/karma.conf.js b/js/tests/karma.conf.js @@ -108,8 +108,8 @@ if (BROWSERSTACK) {
conf.browserStack = {
username: ENV.BROWSER_STACK_USERNAME,
accessKey: ENV.BROWSER_STACK_ACCESS_KEY,
- build: `bootstrap-${new Date().toISOString()}`,
- project: 'Bootstrap',
+ build: `boosted-v5-${new Date().toISOStrin... | 10 |
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md @@ -31,55 +31,3 @@ npm test
```
Please ensure that the tests are passing when submitting a pull request. If you're adding new features to Tailwind, please include tests.
-
-## Building the documentation
-
-Tailwind uses the [Jigsaw](http://jigsaw.tighten.co... | 2 |
diff --git a/src/web/stylesheets/components/_pane.css b/src/web/stylesheets/components/_pane.css line-height: 30px;
background-color: var(--primary-background-colour);
flex-direction: row;
+ padding-left: 10px;
}
.io-card.card:hover {
margin-top: auto;
margin-right: auto;
margin-bottom: auto;
- padding: 10px;
- padding... | 1 |
diff --git a/src/utils_request.js b/src/utils_request.js @@ -30,6 +30,7 @@ const REQUEST_LIKE_BROWSER_DEFAULT_OPTIONS = {
method: 'GET',
useMobileVersion: false,
};
+const TRUNCATED_ERROR_CHARS = 100;
let tunnelAgentExceptionListener;
/**
@@ -154,7 +155,7 @@ export const requestExtended = async (options) => {
if (statu... | 7 |
diff --git a/src/App/RightColumn/index.js b/src/App/RightColumn/index.js @@ -138,13 +138,17 @@ class RightColumn extends Component {
storyFrequency = story &&
getCurrentFrequency(story.frequencyId, frequencies);
- returnUrl = communitySlug === 'everything'
- ? 'everything'
- : storyFrequency && `${communitySlug}/~${sto... | 1 |
diff --git a/public/javascripts/Admin/src/Admin.js b/public/javascripts/Admin/src/Admin.js @@ -210,7 +210,7 @@ function Admin(_, $, difficultRegionIds) {
var loadAuditedStreets = $.getJSON('/contribution/streets/all');
var loadSubmittedLabels = $.getJSON('/labels/all');
var renderPolygons = $.when(loadPolygons, loadPol... | 3 |
diff --git a/includes/Modules/Analytics.php b/includes/Modules/Analytics.php @@ -288,10 +288,6 @@ final class Analytics extends Module
return;
}
- if ( $this->is_tracking_disabled() ) {
- return;
- }
-
wp_enqueue_script( // phpcs:ignore WordPress.WP.EnqueuedResourceParameters.MissingVersion
'google_gtagjs',
'https://ww... | 2 |
diff --git a/src/pages/confirm_invite.js b/src/pages/confirm_invite.js @@ -11,6 +11,7 @@ import {
Card,
Heading,
Button,
+ Badge,
Text,
Box
} from '@hackclub/design-system'
@@ -102,9 +103,9 @@ class Invite extends Component {
</Fragment>
)
case 'accepted':
- return <Button bg="success">Invite accepted</Button>
+ return... | 14 |
diff --git a/packages/cx/src/variables.scss b/packages/cx/src/variables.scss // SCREEN SIZE
$cx-screen-size-small: 400px !default;
-$cx-screen-size-medium: 700px !default;
-$cx-screen-size-large: 1000px !default;
-$cx-screen-size-extra-large: 1400px !default;
+$cx-screen-size-medium: 800px !default;
+$cx-screen-size-la... | 3 |
diff --git a/bin/local-env/includes.sh b/bin/local-env/includes.sh @@ -9,6 +9,16 @@ SITE_TITLE='Google Site Kit Dev'
# Set the name of the Docker Compose project.
export COMPOSE_PROJECT_NAME='googlesitekit-e2e'
+# TTY compatibility.
+# For some environments, a TTY may not be available (e.g. GitHub Actions).
+# Docker C... | 9 |
diff --git a/lib/shared/addon/components/cluster-dashboard/component.js b/lib/shared/addon/components/cluster-dashboard/component.js @@ -4,6 +4,7 @@ import { alias } from '@ember/object/computed';
import { inject as service } from '@ember/service';
import { formatSi, parseSi } from 'shared/utils/parse-unit';
import lay... | 1 |
diff --git a/token-metadata/0xAC9ce326e95f51B5005e9fE1DD8085a01F18450c/metadata.json b/token-metadata/0xAC9ce326e95f51B5005e9fE1DD8085a01F18450c/metadata.json "symbol": "VSF",
"address": "0xAC9ce326e95f51B5005e9fE1DD8085a01F18450c",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/lib/drivers/node-mongodb-native/collection.js b/lib/drivers/node-mongodb-native/collection.js @@ -182,7 +182,7 @@ NativeCollection.prototype.$print = function(name, i, args) {
}
var params = '(' + _args.join(', ') + ')';
- console.error(moduleName + functionCall + params);
+ console.info(moduleName + funct... | 1 |
diff --git a/includes/Modules/Analytics.php b/includes/Modules/Analytics.php @@ -570,7 +570,7 @@ final class Analytics extends Module
// When using multiple date ranges, it changes the structure of the response,
// where each date range becomes an item in a list.
if ( ! empty( $data['multiDateRange'] ) ) {
- $date_rang... | 2 |
diff --git a/examples/src/components/LoadTest.vue b/examples/src/components/LoadTest.vue :lat-lng="marker"
>
<l-popup>
- <video
- controls
- muted
- src="https://archive.org/download/ElephantsDream/ed_1024_512kb.mp4"
+ <img
width="300"
- height="200">
- Sorry, your browser doesn't support embedded videos.
- </video>
+ ... | 14 |
diff --git a/CHANGELOG.md b/CHANGELOG.md ## 8.1.2 (unreleased)
-### Breaking
-
### Feature
- Add Basque translation @erral
-- Added prop resettable to DatetimeWidget @damiDevRT
-- Removed the ability to reset the datepicker in the recurrence widget to prevent the uncontrolled creation of recurrences @damiDevRT
-
### Bu... | 6 |
diff --git a/workshops/arm/arm-lab1-firstTemplate.md b/workshops/arm/arm-lab1-firstTemplate.md @@ -502,59 +502,7 @@ Okay, so we have created an empty template, and added a basic resource snippet,
This process is fairly common, and is how you would work through the options to determine which should be hardcoded, which s... | 14 |
diff --git a/server/models/user.js b/server/models/user.js @@ -102,7 +102,9 @@ const getEverything = (userId: string): Promise<Array<any>> => {
})
.zip()
.filter({ isBlocked: false, isPending: false })
- .without('isBlocked', 'isPending');
+ .without('isBlocked', 'isPending')
+ .orderBy(db.desc('createdAt'))
+ .run();
... | 1 |
diff --git a/best-practices.md b/best-practices.md @@ -728,8 +728,7 @@ database, but it could just as easily be a server-based process.
## How to Differentiate STAC Files
Any tool that crawls a STAC implementation or encounters a STAC file in the wild needs a clear way to determine if it is an Item,
-Collection, Catalo... | 2 |
diff --git a/cmd/shardorchestrator/main.go b/cmd/shardorchestrator/main.go @@ -63,7 +63,7 @@ func main() {
orchestrator: orch,
}
- orch.MaxShardsPerNode = 10
+ orch.MaxShardsPerNode = 16
orch.MaxNodeDowntimeBeforeRestart = time.Second * 10
orch.EnsureAllShardsRunning = true
| 12 |
diff --git a/ios/RCTMGL.xcodeproj/project.pbxproj b/ios/RCTMGL.xcodeproj/project.pbxproj isa = XCBuildConfiguration;
buildSettings = {
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)";
- HEADER_SEARCH_PATHS = "$(SRCROOT)/../../react-native/React/**";
+ HEADER_SEARCH_PATHS = "$(SRCROOT)/../../../react-native/React/**";
OTHER_LDFLA... | 3 |
diff --git a/package.json b/package.json "test": "node --no-deprecation --max-old-space-size=4096 --harmony node_modules/.bin/jest",
"test:integration": "node --no-deprecation --max-old-space-size=4096 --harmony node_modules/.bin/jest --testMatch '<rootDir>/test/*.test.js'",
"test:unit": "node --no-deprecation --max-ol... | 2 |
diff --git a/README.md b/README.md @@ -69,7 +69,7 @@ GET https://api.spacexdata.com/v1/launches/latest
"mission_patch": "http://i.imgur.com/xjtPB9z.png",
"reddit_campaign": "https://www.reddit.com/r/spacex/comments/6o98st",
"reddit_launch": "https://www.reddit.com/r/spacex/comments/6vihsl/welcome_to_the_rspacex_formosa... | 3 |
diff --git a/avatars/avatars.js b/avatars/avatars.js @@ -986,7 +986,7 @@ class Avatar {
rightFoot: _getOffset(modelBones.Left_ankle),
});
- this.height = eyePosition.sub(_averagePoint([modelBones.Left_ankle.getWorldPosition(new THREE.Vector3()), modelBones.Right_ankle.getWorldPosition(new THREE.Vector3())])).y;
+ this.... | 0 |
diff --git a/app/builtin-pages/views/library.js b/app/builtin-pages/views/library.js @@ -132,8 +132,11 @@ function renderColumnHeading ({label, cls, sort}) {
: ''
return yo`
- <div class=${cls}>
- <a onclick=${e => onUpdateSort(sort)}>${label}</a> ${icon}
+ <div class="column-heading ${cls}">
+ <button class="nofocus" ... | 4 |
diff --git a/test/statementTests.js b/test/statementTests.js @@ -193,4 +193,19 @@ describe('Test statements', function() {
// always block
expr.always.kind.should.be.exactly('block');
});
+
+ it('test inner statements', function() {
+ var ast = parser.parseEval([
+ 'if (true) {',
+ ' function foo() {}',
+ ' abstract cl... | 7 |
diff --git a/packages/node_modules/@node-red/util/lib/util.js b/packages/node_modules/@node-red/util/lib/util.js @@ -566,7 +566,11 @@ function prepareJSONataExpression(value,node) {
});
expr.assign('env', function(name) {
var val = getSetting(node, name);
- return (val ? val : "");
+ if (typeof val !== 'undefined') {
+... | 9 |
diff --git a/packages/inferno/src/index.ts b/packages/inferno/src/index.ts @@ -29,7 +29,7 @@ export declare const VNodeFlags: _VNodeFlags;
export declare const Root: _Root;
export declare const LifecycleClass: _LifecycleClass;
-const version = '3.4.3';
+const version = '3.4.4';
// we duplicate it so it plays nicely wit... | 6 |
diff --git a/src/Objs/Job/JobEditingConfig.js b/src/Objs/Job/JobEditingConfig.js @@ -111,7 +111,7 @@ Scrivito.provideEditingConfig("Job", {
const datePosted = obj.get("datePosted");
if (datePosted && validThrough && datePosted >= validThrough) {
return {
- message: '"Expires at" must be after "Posted at".',
+ message: ... | 7 |
diff --git a/articles/libraries/_includes/_change_get_profile.md b/articles/libraries/_includes/_change_get_profile.md ### Change calls to getProfile()
-The deprecated `getProfile()` function was reimplemented in Auth0.js v9. The previous implementation received an [ID Token](/tokens/id-token) as a parameter and return... | 3 |
diff --git a/README.md b/README.md @@ -74,8 +74,8 @@ npm install jquery.tabulator --save
### CDNJS
To access Tabulator directly from the CDNJS CDN servers, include the following two lines at the start of your project, instead of the localy hosted versions:
```html
-<link href="https://cdnjs.cloudflare.com/ajax/libs/tab... | 3 |
diff --git a/src/scripts/interactive-video.js b/src/scripts/interactive-video.js @@ -995,7 +995,7 @@ InteractiveVideo.prototype.hasMainSummary = function () {
summary.task.params === undefined ||
summary.task.params.summaries === undefined ||
!summary.task.params.summaries.length ||
- summary.task.params.summaries[0].s... | 1 |
diff --git a/config/sidebar.yml b/config/sidebar.yml articles:
- title: Getting Started
- url: "/getting-started/overview"
+ url: "/getting-started"
children:
- title: Auth0 Overview
url: /getting-started/overview
- - title: Developer Videos
+ - title: The Basics
+ url: /getting-started/the-basics
+
+ - title: The Dash... | 0 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -10,6 +10,53 @@ https://github.com/plotly/plotly.js/compare/vX.Y.Z...master
where X.Y.Z is the semver of most recent plotly.js release.
+## [1.28.0] -- 2017-06-19
+
+### Added
+- Allow constraints by domain on cartesian axes using new axis attributes:
+ `contrain: 'domain'` a... | 3 |
diff --git a/src/models/sql/lsat.ts b/src/models/sql/lsat.ts @@ -21,7 +21,7 @@ export default class Lsat extends Model<Lsat> {
id: number
@Column({
- type: DataType.STRING,
+ type: DataType.TEXT,
})
identifier: string
@@ -31,27 +31,39 @@ export default class Lsat extends Model<Lsat> {
@UpdatedAt
updatedAt: Date
- @Colu... | 0 |
diff --git a/src/components/drawing/index.js b/src/components/drawing/index.js @@ -556,6 +556,10 @@ drawing.pattern = function(sel, calledBy, gd, patternID, shape, size, solidity,
});
if(bgcolor) {
+ var bgC = tinycolor(bgcolor);
+ var bgRGB = Color.tinyRGB(bgC);
+ var bgAlpha = bgC.getAlpha();
+
var rects = el.selectA... | 9 |
diff --git a/src/components/ChartTable/ChartTable.types.js b/src/components/ChartTable/ChartTable.types.js @@ -17,7 +17,7 @@ declare export type TableStructure = {
formatter?: moment | numeral | (d: any) => number | string,
format?: string
}>,
- sortFunc: () => any,
+ sortFunc: (a, b) => number,
extra?: {
intro?: strin... | 7 |
diff --git a/packages/playground/src/components/JsonEditor/JsonEditor.js b/packages/playground/src/components/JsonEditor/JsonEditor.js @@ -163,7 +163,7 @@ class JsonEditor extends React.Component {
render() {
- const {section, subSection, Options, allOptions, option, expandIcon} = this.props;
+ const {section, subSecti... | 1 |
diff --git a/src/components/common/TmBalance.vue b/src/components/common/TmBalance.vue </h2>
<Bech32 :address="session.address || ''" />
</div>
+ <div class="second-row">
<div class="unbonded-atoms top-section">
<h3>Liquid {{ num.viewDenom(bondDenom) }}</h3>
<h2>{{ unbondedAtoms }}</h2>
/>
</div>
</div>
+ </div>
<slot ... | 7 |
diff --git a/lib/component-repository/src/routes/components/GlobalStop.js b/lib/component-repository/src/routes/components/GlobalStop.js @@ -25,7 +25,7 @@ module.exports = async function (req, res) {
payload: componentData,
};
- ev.payload.startedBy = req.user.sub;
+ ev.payload.stoppedBy = req.user.sub;
try {
const new... | 10 |
diff --git a/README.md b/README.md @@ -126,7 +126,9 @@ Furthermore, the project OpenRobertaServer contains in directory staticResources
To run specific tests, use `mvn test` with the `-Dtest=` option to specify the
test name and `-DfailIfNoTests=false` to avoid a failure if a test of such name
is not present in every s... | 1 |
diff --git a/assets/js/components/surveys/CurrentSurvey.test.js b/assets/js/components/surveys/CurrentSurvey.test.js @@ -100,12 +100,12 @@ describe( 'CurrentSurvey', () => {
);
} );
- it( 'should display question text and subtitle correctly', async () => {
+ it( 'should display the question prompt and subtitle', async ... | 7 |
diff --git a/tests/gl-cases/vtkjsPointFeature.js b/tests/gl-cases/vtkjsPointFeature.js @@ -27,7 +27,10 @@ describe('geo.vtkjs.pointFeature', function () {
}
}
}).data(testPoints);
+ sinon.spy(point, '_update');
point.draw();
+ expect(point._update.calledOnce).toBe(true);
+ point._update.restore();
expect($('#map div ca... | 7 |
diff --git a/README.md b/README.md @@ -95,7 +95,8 @@ The generated CSS output would look like this:
### Primitive Components
If you're using Fela, you're most likely also using React.<br>
-Using the [React bindings](packages/react-fela), you get powerful APIs to create primitive components.
+Using the [React bindings](... | 7 |
diff --git a/assets/css/fonts.css b/assets/css/fonts.css }
@font-face {
- font-family: ExpensifyNeue-Bold;
+ font-family: ExpensifyNeue-Regular;
font-weight: 700;
font-style: normal;
src: url('/fonts/ExpensifyNeue-Bold.woff2') format('woff2'), url('/fonts/ExpensifyNeue-Bold.woff') format('woff');
}
@font-face {
- font-... | 4 |
diff --git a/types/index.d.ts b/types/index.d.ts @@ -20,7 +20,6 @@ import { VueLoaderOptions } from 'vue-loader';
import MixHelpers from '../src/Mix';
// General API
-declare namespace mix {
export interface Api {
/** Set the public path */
setPublicPath(path: string): Api;
@@ -284,7 +283,6 @@ declare namespace mix {
*... | 11 |
diff --git a/src/components/global/feedback-form.js b/src/components/global/feedback-form.js @@ -92,7 +92,7 @@ class FeedbackForm extends React.Component {
<h4 className={Spirit.h4 + `mt1 nudge-top--2`}>Help us improve this page</h4>
<p className={`${Spirit.small} mt1 midgrey`}>Please let us know what's working an... | 10 |
diff --git a/src/css/docs/components/docs-markdown.css b/src/css/docs/components/docs-markdown.css @@ -473,6 +473,7 @@ p.DocsMarkdown--small-header {
--background-color-alpha: .2;
}
+.DocsMarkdown a[name]:not([href])::before,
.DocsMarkdown h2[id]::before,
.DocsMarkdown h3[id]::before,
.DocsMarkdown h4[id]::before,
@@ -... | 7 |
diff --git a/bin/oref0-pump-loop.sh b/bin/oref0-pump-loop.sh @@ -426,7 +426,7 @@ function refresh_after_bolus_or_enact {
function unsuspend_if_no_temp {
# If temp basal duration is zero, unsuspend pump
if (cat monitor/temp_basal.json | json -c "this.duration == 0" | grep -q duration); then
- if check_pref_bool unsuspen... | 1 |
diff --git a/src-input/duk_api_stack.c b/src-input/duk_api_stack.c @@ -4625,12 +4625,11 @@ DUK_LOCAL void duk__validate_push_heapptr(duk_context *ctx, void *ptr) {
DUK_ASSERT(found == 0); /* Would indicate corrupted lists. */
found = 1;
} else {
-#if 1
- DUK_ASSERT(0);
-#else /* Enable when duk_push_heapptr() allowed f... | 11 |
diff --git a/etc/encoded-apache.conf b/etc/encoded-apache.conf @@ -135,11 +135,15 @@ RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [redirect=permanent,last,qsappe
# Forbid PUT/PATCH/POST
#RewriteEngine On
#RewriteCond %{REQUEST_METHOD} ^(PUT|POST|PATCH)
-#RewriteCond %{REQUEST_URI} !/auth0.py [NC]
-#RewriteCond %{RE... | 11 |
diff --git a/bl-kernel/helpers/theme.class.php b/bl-kernel/helpers/theme.class.php @@ -248,7 +248,7 @@ class Theme {
public static function jquery()
{
- return '<script async src="'.DOMAIN_CORE_JS.'jquery.min.js?version='.BLUDIT_VERSION.'"></script>'.PHP_EOL;
+ return '<script src="'.DOMAIN_CORE_JS.'jquery.min.js?versi... | 2 |
diff --git a/character-controller.js b/character-controller.js @@ -947,7 +947,7 @@ class InterpolatedPlayer extends StatePlayer {
quaternion: this.quaternionInterpolant.get(),
};
}
- update(timestamp, timeDiff) {
+ /* update(timestamp, timeDiff) {
if (!this.avatar) return; // avatar takes time to load, ignore until it ... | 2 |
diff --git a/src/templates/insights.js b/src/templates/insights.js @@ -46,7 +46,13 @@ const Insights = ({ data }) => {
<div css={imageSrc === 'undefined' && wrapperStyle}>
{imageSrc && (
<Img
- fluid={imageSrc}
+ fluid={[
+ post.relationships.field_image.localFile.mobileImage.fluid,
+ {
+ ...post.relationships.field_im... | 14 |
diff --git a/assets/js/modules/analytics/components/dashboard/AnalyticsAdSenseDashboardWidgetTopPagesTable.js b/assets/js/modules/analytics/components/dashboard/AnalyticsAdSenseDashboardWidgetTopPagesTable.js @@ -25,7 +25,7 @@ import { __ } from '@wordpress/i18n';
* Internal dependencies
*/
import Data from 'googlesite... | 2 |
diff --git a/js/webcomponents/bisweb_modulemanagerelement.js b/js/webcomponents/bisweb_modulemanagerelement.js @@ -201,7 +201,7 @@ class ModuleManagerElement extends HTMLElement {
let dosep=(this.mode === 'paravision');
this.createModule('Combine Images',1, false, modules.combineImages, moduleoptions);
- this.createMod... | 10 |
diff --git a/lib/composer.js b/lib/composer.js @@ -178,9 +178,9 @@ export default class Composer extends Disposable {
this.dicy = new DiCy(true)
- this.dicy.on('log', (filePath, event) => {
+ this.dicy.on('log', (filePath, newMessages) => {
const rootPath = path.dirname(filePath)
- const messages = event.messages.map(d... | 14 |
diff --git a/src/utils/schema-utils.js b/src/utils/schema-utils.js @@ -111,8 +111,24 @@ export function getSampleValueByType(schemaObj) {
return schemaObj.$ref;
}
const typeValue = Array.isArray(schemaObj.type) ? schemaObj.type[0] : schemaObj.type;
- if (typeValue.match(/^integer/g)) { return 0; }
- if (typeValue.match... | 7 |
diff --git a/packages/server/routes/admin.js b/packages/server/routes/admin.js @@ -1193,6 +1193,20 @@ router.post(
],
});
});
+ child.on("error", function (msg) {
+ const message = msg.message ? msg.message : msg.code;
+ const stack = msg.stack ? msg.stack : "";
+ res.sendWrap(req.__(`Admin`), {
+ above: [
+ {
+ type: ... | 9 |
diff --git a/src/plots/cartesian/axes.js b/src/plots/cartesian/axes.js @@ -2291,40 +2291,10 @@ axes.draw = function(gd, arg, opts) {
fullLayout._infolayer.select('.g-' + ya._id + 'title').remove();
}
});
- } else if(arg && arg.length === 1) {
- fullLayout._paper.selectAll('g.subplot').each(function(d) {
- var id = d[0]... | 2 |
diff --git a/src/plots/cartesian/axes.js b/src/plots/cartesian/axes.js @@ -2650,7 +2650,7 @@ axes.drawOne = function(gd, ax, opts) {
};
function filterPush(push, automargin) {
- if(!push) return push;
+ if(!push) return;
var keepMargin = Object.keys(MARGIN_MAPPING).reduce(function(data, nextKey) {
if(automargin.indexOf... | 2 |
diff --git a/src/ns_bucket.erl b/src/ns_bucket.erl @@ -927,10 +927,10 @@ update_bucket_config(Bucket, Fun) ->
lists:keyreplace(configs, 1, List, {configs, NewBuckets})
end).
-%% returns true iff bucket with given names is membase bucket.
is_persistent(BucketName) ->
{ok, BucketConfig} = get_bucket(BucketName),
- bucket... | 12 |
diff --git a/ui/src/utils/private/global-dialog.js b/ui/src/utils/private/global-dialog.js @@ -41,13 +41,13 @@ export default function (DefaultComponent, supportsCustomComponent, parentApp) {
? parentApp.component(component)
: component
- props = componentProps
+ props = componentProps || {}
}
else {
const { class: kla... | 1 |
diff --git a/src/components/time-picker/time-picker.vue b/src/components/time-picker/time-picker.vue const value = this.value
const minTime = this.minTime
// fix the value last choose was changed when time-picker is opened again
- if (value < Math.floor(minTime / MINUTE_TIMESTAMP) * MINUTE_TIMESTAMP) {
+ const comparat... | 1 |
diff --git a/Source/DataSources/EllipsoidGraphics.js b/Source/DataSources/EllipsoidGraphics.js @@ -25,10 +25,10 @@ define([
* @param {Object} [options] Object with the following properties:
* @param {Property} [options.radii] A {@link Cartesian3} Property specifying the radii of the ellipsoid.
* @param {Property} [opti... | 3 |
diff --git a/config/initializers/warden.rb b/config/initializers/warden.rb @@ -9,10 +9,6 @@ end
module LoginEventTrigger
def trigger_login_event(user)
- CartoDB::Logger.debug(message: "Login event",
- username: user.username,
- dashboard_viewed_at: user.dashboard_viewed_at.to_s,
- model_class: user.class.name)
CartoGea... | 2 |
diff --git a/package-lock.json b/package-lock.json "version": "1.1.0",
"resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
"integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=",
- "dev": true
+ "dev": true,
+ "optional": true
},
"convert-source-map": {
"version": "1.6.0",
"a... | 13 |
diff --git a/README.md b/README.md @@ -263,7 +263,7 @@ From now on all of your pages will have the defaults above applied.
| `defaultTitle` | string | If no title is set on a page, this string will be used instead of an empty `titleTemplate` [More Info](#default-title) |
| `noindex` | boolean (default false) | Sets whe... | 10 |
diff --git a/test-basic/endpoint-caller.js b/test-basic/endpoint-caller.js @@ -23,8 +23,8 @@ var dbWriter = marklogic.createDatabaseClient(testconfig.restWriterConnection);
describe('Endpoint caller', function() {
it('moduleInitSjs endpoint', function(done) {
- const serviceDeclaration = JSON.parse(fs.readFileSync('tes... | 1 |
diff --git a/server/ldap.js b/server/ldap.js @@ -28,8 +28,10 @@ LDAP.bindValue = function (usernameOrEmail, isEmailAddress) {
return '';
}
- const serverDn = Meteor.settings.ldap.serverDn;
- const searchDn = Meteor.settings.ldap.propertyMap.username;
+ const ldapSettings = Meteor.settings.ldap || {},
+ serverDn = ldapS... | 7 |
diff --git a/src/components/FormBuilder.jsx b/src/components/FormBuilder.jsx @@ -53,6 +53,7 @@ export default class FormBuilder extends Component {
this.builder.instance.on('saveComponent', this.onChange);
this.builder.instance.on('updateComponent', this.onChange);
this.builder.instance.on('deleteComponent', this.onCha... | 0 |
diff --git a/core/worker/lib/states/discovery.js b/core/worker/lib/states/discovery.js @@ -15,6 +15,7 @@ class EtcdDiscovery extends EventEmitter {
this._etcd = new Etcd();
await this._etcd.init(options.etcdDiscovery.init);
await this._etcd.discovery.register({ serviceName: options.etcdDiscovery.init.serviceName });
+ ... | 0 |
diff --git a/components/mapbox/ban-map/layers.js b/components/mapbox/ban-map/layers.js @@ -242,3 +242,84 @@ export const toponymeLayer = {
'text-radial-offset': 0.1
}
}
+
+export const cadastreLayers = [{
+ id: 'batiments-fill',
+ type: 'fill',
+ source: 'cadastre',
+ 'source-layer': 'batiments',
+ minzoom: 16,
+ paint... | 0 |
diff --git a/articles/libraries/lock/v10/new-features.md b/articles/libraries/lock/v10/new-features.md ---
section: libraries
-description: Describes the new features with Lock V10.
+title: New Features in Lock 10
+description: Describes the new features introduced at Lock v10
+toc: true
---
# New Features in Lock 10
-... | 3 |
diff --git a/docs/content/charts/Markers.js b/docs/content/charts/Markers.js @@ -136,10 +136,6 @@ export const Markers = <cx>
`}</CodeSnippet>
</CodeSplit>
- Examples:
-
- * [Combination](~/examples/charts/bar/combination)
-
## Configuration
<ConfigTable props={configs} />
| 2 |
diff --git a/js/background.js b/js/background.js @@ -134,7 +134,7 @@ chrome.webRequest.onBeforeRequest.addListener(
'currentWindow': true,
'active': true
}, function(tabs) {
- var tabId = tabs[0].id;
+ var tabId = tabs[0]? tabs[0].id : '';
$this.tabTrackers[tabId] = $this.tabTrackers[tabId]? $this.tabTrackers[tabId]++ ... | 2 |
diff --git a/client/components/boards/boardsList.styl b/client/components/boards/boardsList.styl @@ -33,13 +33,12 @@ $spaceBetweenTiles = 16px
overflow: hidden;
background-color: #999
color: #f6f6f6
- height: auto
+ min-height: 100px
font-size: 16px
line-height: 22px
border-radius: 3px
display: block
font-weight: 700
-... | 12 |
diff --git a/components/Card/Table.js b/components/Card/Table.js @@ -96,7 +96,6 @@ export const CardRows = ({ nodes, revertCard, ignoreCard, followCard, t }) => (
<th {...styles.td}>Name</th>
<th {...styles.num}>Nr.</th>
<th {...styles.td} />
- <th {...styles.num} />
<th style={{ width: 82 }} />
</tr>
{nodes.map(({ car... | 1 |
diff --git a/docs/articles/documentation/test-api/assertions/assertion-api.md b/docs/articles/documentation/test-api/assertions/assertion-api.md @@ -125,8 +125,8 @@ await t.expect( actual ).contains( expected, message, options );
Parameter | Type | Description
---------------------- | ----------------------------------... | 0 |
diff --git a/site/release-notes/3.8.10.md b/site/release-notes/3.8.10.md -## RabbitMQ 3.8.10-rc.2
+## RabbitMQ 3.8.10-rc.5
-RabbitMQ `3.8.10-rc.2` is a preview of a maintenance release.
+RabbitMQ `3.8.10-rc.5` is a preview of a maintenance release.
Besides containing several bug fixes, it introduces a couple new featur... | 4 |
diff --git a/token-metadata/0x70a72833d6bF7F508C8224CE59ea1Ef3d0Ea3A38/metadata.json b/token-metadata/0x70a72833d6bF7F508C8224CE59ea1Ef3d0Ea3A38/metadata.json "symbol": "UTK",
"address": "0x70a72833d6bF7F508C8224CE59ea1Ef3d0Ea3A38",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/package.json b/package.json {
"name": "owasp-threat-dragon-core",
- "version": "1.2.0",
+ "version": "1.2.1",
"private": false,
"scripts": {
"build": "npm run bundle-css && npm run build-templates",
| 11 |
diff --git a/src/traces/treemap/plot.js b/src/traces/treemap/plot.js @@ -103,9 +103,7 @@ function plotOne(gd, cd, element, transitionOpts) {
y0 = barDifY + 0;
y1 = barDifY + height;
} else {
- var ref = clicked.zoomOut ? refRect : (
- upDown ? prevLookup[clicked.id] : prevLookdown[clicked.id]
- );
+ var ref = clicked.z... | 2 |
diff --git a/Makefile b/Makefile @@ -27,9 +27,9 @@ GO_SOURCE_FILES := find . -type f -name '*.go' \
! -path './vendor/*' \
install_requirements:
+ go get -u honnef.co/go/tools/cmd/megacheck
go get -u golang.org/x/tools/cmd/goimports
go get -u github.com/fzipp/gocyclo
- go get -u honnef.co/go/tools/cmd/staticcheck
go ge... | 0 |
diff --git a/userscript.user.js b/userscript.user.js @@ -10814,7 +10814,7 @@ var $$IMU_EXPORT$$;
mouseover_allow_video: true
},
type: "keysequence",
- category: "popup",
+ category: "keybinds",
subcategory: "video"
},
mouseover_video_loop: {
@@ -10850,7 +10850,7 @@ var $$IMU_EXPORT$$;
mouseover_allow_video: true
},
typ... | 5 |
diff --git a/make.js b/make.js @@ -49,8 +49,8 @@ function buildStorePackage() {
spawn("mkdir", ["-p", "dist/chrome-canary"], false, true);
spawn("mkdir", ["-p", "dist/firefox"], false, true);
- const blacklist = [".*", "*.coffee", "*.md", "reference", "test_harnesses", "tests", "dist", "git_hooks",
- "CREDITS", "node_m... | 8 |
diff --git a/src/targetValidationUtils.js b/src/targetValidationUtils.js @@ -46,6 +46,11 @@ export default function getValidationProperties(clientX, clientY, control, paper
return returnValue;
}
+ if (isTextAnnotation(control.bpmnType)) {
+ returnValue.allowDrop = true;
+ return returnValue;
+ }
+
let poolUnderPosition... | 11 |
diff --git a/core/style.js b/core/style.js @@ -17,11 +17,9 @@ Blockly.Style = function(blockStyles) {
* block styles.
*/
Blockly.Style.prototype.setAllBlockStyles = function(blockStyles) {
- var event = new Blockly.Events.Ui(null, 'blockStylesChanged', this.blockStyles_, blockStyles);
for (var key in blockStyles) {
thi... | 2 |
diff --git a/module/dierolls/dieroll.js b/module/dierolls/dieroll.js @@ -32,7 +32,7 @@ export async function doRoll(actor, formula, targetmods, prefix, thing, origtarg
}
actor = actor || game.user
- let speaker = ChatMessage.getSpeaker(actor)
+ let speaker = ChatMessage.getSpeaker({ actor: actor })
let messageData = {
... | 1 |
diff --git a/index.d.ts b/index.d.ts @@ -28,7 +28,7 @@ export interface Functor<A> {
'fantasy-land/map'<B extends this[typeof $T]>(mapper: (value: A) => B): Functor<B>
}
-type Unfunctor<F extends Functor<unknown>, B> = ReturnType<(F & { [$T]: B })['fantasy-land/map']>
+type Mapped<F extends Functor<unknown>, B> = Retur... | 10 |
diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/editor.js b/packages/node_modules/@node-red/editor-client/src/js/ui/editor.js @@ -1409,7 +1409,7 @@ RED.editor = (function() {
RED.tray.show(trayOptions);
}
- function showEditSubflowDialog(subflow) {
+ function showEditSubflowDialog(subflow, defaultT... | 11 |
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml @@ -84,7 +84,7 @@ jobs:
echo 'Code push release target version "${BUILD_NUMBER}"'
yarn lingui:compile
yarn add appcenter-cli@^2.*
- npx appcenter codepush release-react ${{ env.APPCENTER_NAME }} android --token "${{ env.APPCENTER_TOKEN }}"
+ npx... | 2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.